summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjake <jake@FreeBSD.org>2000-12-02 05:45:32 +0000
committerjake <jake@FreeBSD.org>2000-12-02 05:45:32 +0000
commit11d57dad0aec03040b8189cd2b348ec8b9a85a7f (patch)
tree9a279c39763d499735b1e65934e1e2129e53150d
parentc0513a881efc0fe6ee50e6c68c079a983940fd61 (diff)
downloadFreeBSD-src-11d57dad0aec03040b8189cd2b348ec8b9a85a7f.zip
FreeBSD-src-11d57dad0aec03040b8189cd2b348ec8b9a85a7f.tar.gz
Regen.
-rw-r--r--sys/kern/init_sysent.c6
-rw-r--r--sys/kern/syscalls.c6
-rw-r--r--sys/sys/syscall-hide.h4
-rw-r--r--sys/sys/syscall.h6
-rw-r--r--sys/sys/syscall.mk4
-rw-r--r--sys/sys/sysproto.h10
6 files changed, 12 insertions, 24 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c
index ba9728e..326c5fb 100644
--- a/sys/kern/init_sysent.c
+++ b/sys/kern/init_sysent.c
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: src/sys/kern/syscalls.master,v 1.82 2000/08/28 07:50:44 marcel Exp
+ * created from FreeBSD: src/sys/kern/syscalls.master,v 1.84 2000/12/02 05:41:29 jake Exp
*/
#include "opt_compat.h"
@@ -344,8 +344,8 @@ struct sysent sysent[] = {
{ AS(aio_write_args), (sy_call_t *)aio_write }, /* 319 = aio_write */
{ AS(lio_listio_args), (sy_call_t *)lio_listio }, /* 320 = lio_listio */
{ 0, (sy_call_t *)yield }, /* 321 = yield */
- { AS(thr_sleep_args), (sy_call_t *)thr_sleep }, /* 322 = thr_sleep */
- { AS(thr_wakeup_args), (sy_call_t *)thr_wakeup }, /* 323 = thr_wakeup */
+ { 0, (sy_call_t *)nosys }, /* 322 = obsolete thr_sleep */
+ { 0, (sy_call_t *)nosys }, /* 323 = obsolete thr_wakeup */
{ AS(mlockall_args), (sy_call_t *)mlockall }, /* 324 = mlockall */
{ 0, (sy_call_t *)munlockall }, /* 325 = munlockall */
{ AS(__getcwd_args), (sy_call_t *)__getcwd }, /* 326 = __getcwd */
diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c
index 834580a..e787b32 100644
--- a/sys/kern/syscalls.c
+++ b/sys/kern/syscalls.c
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: src/sys/kern/syscalls.master,v 1.82 2000/08/28 07:50:44 marcel Exp
+ * created from FreeBSD: src/sys/kern/syscalls.master,v 1.84 2000/12/02 05:41:29 jake Exp
*/
char *syscallnames[] = {
@@ -329,8 +329,8 @@ char *syscallnames[] = {
"aio_write", /* 319 = aio_write */
"lio_listio", /* 320 = lio_listio */
"yield", /* 321 = yield */
- "thr_sleep", /* 322 = thr_sleep */
- "thr_wakeup", /* 323 = thr_wakeup */
+ "obs_thr_sleep", /* 322 = obsolete thr_sleep */
+ "obs_thr_wakeup", /* 323 = obsolete thr_wakeup */
"mlockall", /* 324 = mlockall */
"munlockall", /* 325 = munlockall */
"__getcwd", /* 326 = __getcwd */
diff --git a/sys/sys/syscall-hide.h b/sys/sys/syscall-hide.h
index a729728..8c3cb52 100644
--- a/sys/sys/syscall-hide.h
+++ b/sys/sys/syscall-hide.h
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: src/sys/kern/syscalls.master,v 1.82 2000/08/28 07:50:44 marcel Exp
+ * created from FreeBSD: src/sys/kern/syscalls.master,v 1.84 2000/12/02 05:41:29 jake Exp
*/
HIDE_POSIX(fork)
@@ -240,8 +240,6 @@ HIDE_BSD(aio_read)
HIDE_BSD(aio_write)
HIDE_BSD(lio_listio)
HIDE_BSD(yield)
-HIDE_BSD(thr_sleep)
-HIDE_BSD(thr_wakeup)
HIDE_BSD(mlockall)
HIDE_BSD(munlockall)
HIDE_BSD(__getcwd)
diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h
index 011669b..e7a1cfd 100644
--- a/sys/sys/syscall.h
+++ b/sys/sys/syscall.h
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: src/sys/kern/syscalls.master,v 1.82 2000/08/28 07:50:44 marcel Exp
+ * created from FreeBSD: src/sys/kern/syscalls.master,v 1.84 2000/12/02 05:41:29 jake Exp
*/
#define SYS_syscall 0
@@ -246,8 +246,8 @@
#define SYS_aio_write 319
#define SYS_lio_listio 320
#define SYS_yield 321
-#define SYS_thr_sleep 322
-#define SYS_thr_wakeup 323
+ /* 322 is obsolete thr_sleep */
+ /* 323 is obsolete thr_wakeup */
#define SYS_mlockall 324
#define SYS_munlockall 325
#define SYS___getcwd 326
diff --git a/sys/sys/syscall.mk b/sys/sys/syscall.mk
index e686f64..ff0d85d 100644
--- a/sys/sys/syscall.mk
+++ b/sys/sys/syscall.mk
@@ -1,7 +1,7 @@
# FreeBSD system call names.
# DO NOT EDIT-- this file is automatically generated.
# $FreeBSD$
-# created from FreeBSD: src/sys/kern/syscalls.master,v 1.82 2000/08/28 07:50:44 marcel Exp
+# created from FreeBSD: src/sys/kern/syscalls.master,v 1.84 2000/12/02 05:41:29 jake Exp
MIASM = \
syscall.o \
exit.o \
@@ -197,8 +197,6 @@ MIASM = \
aio_write.o \
lio_listio.o \
yield.o \
- thr_sleep.o \
- thr_wakeup.o \
mlockall.o \
munlockall.o \
__getcwd.o \
diff --git a/sys/sys/sysproto.h b/sys/sys/sysproto.h
index 7e8abde..4e3f563 100644
--- a/sys/sys/sysproto.h
+++ b/sys/sys/sysproto.h
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: src/sys/kern/syscalls.master,v 1.82 2000/08/28 07:50:44 marcel Exp
+ * created from FreeBSD: src/sys/kern/syscalls.master,v 1.84 2000/12/02 05:41:29 jake Exp
*/
#ifndef _SYS_SYSPROTO_H_
@@ -851,12 +851,6 @@ struct lio_listio_args {
struct yield_args {
register_t dummy;
};
-struct thr_sleep_args {
- const struct timespec * timeout; char timeout_[PAD_(const struct timespec *)];
-};
-struct thr_wakeup_args {
- pid_t pid; char pid_[PAD_(pid_t)];
-};
struct mlockall_args {
int how; char how_[PAD_(int)];
};
@@ -1235,8 +1229,6 @@ int aio_read __P((struct proc *, struct aio_read_args *));
int aio_write __P((struct proc *, struct aio_write_args *));
int lio_listio __P((struct proc *, struct lio_listio_args *));
int yield __P((struct proc *, struct yield_args *));
-int thr_sleep __P((struct proc *, struct thr_sleep_args *));
-int thr_wakeup __P((struct proc *, struct thr_wakeup_args *));
int mlockall __P((struct proc *, struct mlockall_args *));
int munlockall __P((struct proc *, struct munlockall_args *));
int __getcwd __P((struct proc *, struct __getcwd_args *));
OpenPOWER on IntegriCloud