summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1998-05-14 11:29:06 +0000
committerPeter Wemm <peter@FreeBSD.org>1998-05-14 11:29:06 +0000
commit06b6493558f59d843f456d4ea76e9d0ef1093162 (patch)
treee208ee3b41d4ce58b711f199f1bfa9ec2565b082
parent786cf38a2916748c080646512b2641744813db3b (diff)
Notes
-rw-r--r--sys/kern/init_sysent.c4
-rw-r--r--sys/kern/syscalls.c4
-rw-r--r--sys/sys/syscall-hide.h3
-rw-r--r--sys/sys/syscall.h4
-rw-r--r--sys/sys/sysproto.h8
5 files changed, 8 insertions, 15 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c
index b07b8809b509..72a5cd148ce2 100644
--- a/sys/kern/init_sysent.c
+++ b/sys/kern/init_sysent.c
@@ -2,7 +2,7 @@
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from Id: syscalls.master,v 1.49 1998/03/28 11:50:01 dufault Exp
+ * created from Id: syscalls.master,v 1.51 1998/05/14 11:28:11 peter Exp
*/
#include "opt_compat.h"
@@ -332,7 +332,7 @@ struct sysent sysent[] = {
{ 1, (sy_call_t *)getsid }, /* 310 = getsid */
{ 0, (sy_call_t *)nosys }, /* 311 = setresuid */
{ 0, (sy_call_t *)nosys }, /* 312 = setresgid */
- { 3, (sy_call_t *)signanosleep }, /* 313 = signanosleep */
+ { 0, (sy_call_t *)nosys }, /* 313 = obsolete signanosleep */
{ 1, (sy_call_t *)aio_return }, /* 314 = aio_return */
{ 3, (sy_call_t *)aio_suspend }, /* 315 = aio_suspend */
{ 2, (sy_call_t *)aio_cancel }, /* 316 = aio_cancel */
diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c
index d295b20ace14..fa9bc94e3a1b 100644
--- a/sys/kern/syscalls.c
+++ b/sys/kern/syscalls.c
@@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from Id: syscalls.master,v 1.49 1998/03/28 11:50:01 dufault Exp
+ * created from Id: syscalls.master,v 1.51 1998/05/14 11:28:11 peter Exp
*/
char *syscallnames[] = {
@@ -319,7 +319,7 @@ char *syscallnames[] = {
"getsid", /* 310 = getsid */
"#311", /* 311 = setresuid */
"#312", /* 312 = setresgid */
- "signanosleep", /* 313 = signanosleep */
+ "obs_signanosleep", /* 313 = obsolete signanosleep */
"aio_return", /* 314 = aio_return */
"aio_suspend", /* 315 = aio_suspend */
"aio_cancel", /* 316 = aio_cancel */
diff --git a/sys/sys/syscall-hide.h b/sys/sys/syscall-hide.h
index 799c1873a4d0..8568293deb9f 100644
--- a/sys/sys/syscall-hide.h
+++ b/sys/sys/syscall-hide.h
@@ -2,7 +2,7 @@
* System call hiders.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from Id: syscalls.master,v 1.49 1998/03/28 11:50:01 dufault Exp
+ * created from Id: syscalls.master,v 1.51 1998/05/14 11:28:11 peter Exp
*/
HIDE_POSIX(fork)
@@ -225,7 +225,6 @@ HIDE_BSD(kldnext)
HIDE_BSD(kldstat)
HIDE_BSD(kldfirstmod)
HIDE_BSD(getsid)
-HIDE_BSD(signanosleep)
HIDE_BSD(aio_return)
HIDE_BSD(aio_suspend)
HIDE_BSD(aio_cancel)
diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h
index a29f08202625..b219da4df3b3 100644
--- a/sys/sys/syscall.h
+++ b/sys/sys/syscall.h
@@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from Id: syscalls.master,v 1.49 1998/03/28 11:50:01 dufault Exp
+ * created from Id: syscalls.master,v 1.51 1998/05/14 11:28:11 peter Exp
*/
#define SYS_syscall 0
@@ -230,7 +230,7 @@
#define SYS_kldstat 308
#define SYS_kldfirstmod 309
#define SYS_getsid 310
-#define SYS_signanosleep 313
+ /* 313 is obsolete signanosleep */
#define SYS_aio_return 314
#define SYS_aio_suspend 315
#define SYS_aio_cancel 316
diff --git a/sys/sys/sysproto.h b/sys/sys/sysproto.h
index 0e7a8dc6cb90..b8616d121acd 100644
--- a/sys/sys/sysproto.h
+++ b/sys/sys/sysproto.h
@@ -2,7 +2,7 @@
* System call prototypes.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from Id: syscalls.master,v 1.49 1998/03/28 11:50:01 dufault Exp
+ * created from Id: syscalls.master,v 1.51 1998/05/14 11:28:11 peter Exp
*/
#ifndef _SYS_SYSPROTO_H_
@@ -797,11 +797,6 @@ struct kldfirstmod_args {
struct getsid_args {
pid_t pid;
};
-struct signanosleep_args {
- const struct timespec * rqtp;
- struct timespec * rmtp;
- sigset_t * mask;
-};
struct aio_return_args {
struct aiocb * aiocbp;
};
@@ -1064,7 +1059,6 @@ int kldnext __P((struct proc *, struct kldnext_args *));
int kldstat __P((struct proc *, struct kldstat_args *));
int kldfirstmod __P((struct proc *, struct kldfirstmod_args *));
int getsid __P((struct proc *, struct getsid_args *));
-int signanosleep __P((struct proc *, struct signanosleep_args *));
int aio_return __P((struct proc *, struct aio_return_args *));
int aio_suspend __P((struct proc *, struct aio_suspend_args *));
int aio_cancel __P((struct proc *, struct aio_cancel_args *));