diff options
-rw-r--r-- | sys/kern/init_sysent.c | 5 | ||||
-rw-r--r-- | sys/kern/syscalls.c | 4 | ||||
-rw-r--r-- | sys/sys/syscall.h | 3 |
3 files changed, 7 insertions, 5 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index c1e55a3..be08c5b 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.4 1994/08/19 11:45:23 davidg Exp $ + * created from $Id: syscalls.master,v 1.6 1994/09/01 05:12:42 davidg Exp $ */ #include <sys/param.h> @@ -141,6 +141,7 @@ int getdomainname(); int setdomainname(); int uname(); int sysarch(); +int rtprio(); #ifdef SYSVSHM int shmsys(); #else @@ -440,7 +441,7 @@ struct sysent sysent[] = { { 2, setdomainname }, /* 163 = setdomainname */ { 1, uname }, /* 164 = uname */ { 2, sysarch }, /* 165 = sysarch */ - { 0, nosys }, /* 166 = nosys */ + { 2, rtprio }, /* 166 = rtprio */ { 0, nosys }, /* 167 = nosys */ { 0, nosys }, /* 168 = nosys */ { 0, nosys }, /* 169 = nosys */ diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index 67e4cf4..8ecac7c 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.4 1994/08/19 11:45:23 davidg Exp $ + * created from $Id: syscalls.master,v 1.6 1994/09/01 05:12:42 davidg Exp $ */ char *syscallnames[] = { @@ -192,7 +192,7 @@ char *syscallnames[] = { "setdomainname", /* 163 = setdomainname */ "uname", /* 164 = uname */ "sysarch", /* 165 = sysarch */ - "#166", /* 166 = nosys */ + "rtprio", /* 166 = rtprio */ "#167", /* 167 = nosys */ "#168", /* 168 = nosys */ "#169", /* 169 = nosys */ diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index e22e8c9..ca8ed07 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.4 1994/08/19 11:45:23 davidg Exp $ + * created from $Id: syscalls.master,v 1.6 1994/09/01 05:12:42 davidg Exp $ */ #define SYS_syscall 0 @@ -164,6 +164,7 @@ #define SYS_setdomainname 163 #define SYS_uname 164 #define SYS_sysarch 165 +#define SYS_rtprio 166 #define SYS_shmsys 171 #define SYS_ntp_gettime 175 #define SYS_ntp_adjtime 176 |