diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index a8307b1fe4ab..c31ed46bc01f 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.53 1998/08/24 08:29:52 dfr Exp + * created from Id: syscalls.master,v 1.55 1998/11/11 12:45:14 peter Exp */ #include "opt_compat.h" @@ -356,4 +356,5 @@ struct sysent sysent[] = { { 2, (sy_call_t *)sched_rr_get_interval }, /* 334 = sched_rr_get_interval */ { 2, (sy_call_t *)utrace }, /* 335 = utrace */ { 8, (sy_call_t *)sendfile }, /* 336 = sendfile */ + { 3, (sy_call_t *)kldsym }, /* 337 = kldsym */ }; diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index c5164a98f19e..22e9e8ecf854 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.53 1998/08/24 08:29:52 dfr Exp + * created from Id: syscalls.master,v 1.55 1998/11/11 12:45:14 peter Exp */ char *syscallnames[] = { @@ -343,4 +343,5 @@ char *syscallnames[] = { "sched_rr_get_interval", /* 334 = sched_rr_get_interval */ "utrace", /* 335 = utrace */ "sendfile", /* 336 = sendfile */ + "kldsym", /* 337 = kldsym */ }; diff --git a/sys/sys/syscall-hide.h b/sys/sys/syscall-hide.h index 060d955d34ae..814bfecbd0c1 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.53 1998/08/24 08:29:52 dfr Exp + * created from Id: syscalls.master,v 1.55 1998/11/11 12:45:14 peter Exp */ HIDE_POSIX(fork) @@ -248,3 +248,4 @@ HIDE_POSIX(sched_get_priority_min) HIDE_POSIX(sched_rr_get_interval) HIDE_BSD(utrace) HIDE_BSD(sendfile) +HIDE_BSD(kldsym) diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index 714573da6fdd..464ea91cb7ba 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.53 1998/08/24 08:29:52 dfr Exp + * created from Id: syscalls.master,v 1.55 1998/11/11 12:45:14 peter Exp */ #define SYS_syscall 0 @@ -254,4 +254,5 @@ #define SYS_sched_rr_get_interval 334 #define SYS_utrace 335 #define SYS_sendfile 336 -#define SYS_MAXSYSCALL 337 +#define SYS_kldsym 337 +#define SYS_MAXSYSCALL 338 diff --git a/sys/sys/syscall.mk b/sys/sys/syscall.mk index 557f5a924da0..581290a0f350 100644 --- a/sys/sys/syscall.mk +++ b/sys/sys/syscall.mk @@ -1,6 +1,6 @@ # FreeBSD system call names. # DO NOT EDIT-- this file is automatically generated. -# created from Id: syscalls.master,v 1.53 1998/08/24 08:29:52 dfr Exp +# created from Id: syscalls.master,v 1.55 1998/11/11 12:45:14 peter Exp MIASM = \ syscall.o \ exit.o \ @@ -209,4 +209,5 @@ MIASM = \ sched_get_priority_min.o \ sched_rr_get_interval.o \ utrace.o \ - sendfile.o + sendfile.o \ + kldsym.o