From a92ae4753960d60c9bcdd778b32bfae1daaad684 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Tue, 3 Feb 1998 17:52:21 +0000 Subject: [PATCH] Updated generated files. --- sys/kern/init_sysent.c | 2 +- sys/kern/syscalls.c | 2 +- sys/sys/syscall-hide.h | 2 +- sys/sys/syscall.h | 2 +- sys/sys/sysproto.h | 6 ++++-- 5 files changed, 8 insertions(+), 6 deletions(-) diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index 4697d70249c..7f62e27c49d 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.46 1998/01/24 02:54:35 eivind Exp + * created from Id: syscalls.master,v 1.48 1998/02/03 17:45:43 bde Exp */ #include "opt_compat.h" diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index 09bd8908582..ee2f34051fe 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.46 1998/01/24 02:54:35 eivind Exp + * created from Id: syscalls.master,v 1.48 1998/02/03 17:45:43 bde Exp */ char *syscallnames[] = { diff --git a/sys/sys/syscall-hide.h b/sys/sys/syscall-hide.h index 42fb3a4095b..b79c0a86290 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.46 1998/01/24 02:54:35 eivind Exp + * created from Id: syscalls.master,v 1.48 1998/02/03 17:45:43 bde Exp */ HIDE_POSIX(fork) diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index b01e8910af0..c9397e805c7 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.46 1998/01/24 02:54:35 eivind Exp + * created from Id: syscalls.master,v 1.48 1998/02/03 17:45:43 bde Exp */ #define SYS_syscall 0 diff --git a/sys/sys/sysproto.h b/sys/sys/sysproto.h index 1429083c331..6d3d8e0f26d 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.46 1998/01/24 02:54:35 eivind Exp + * created from Id: syscalls.master,v 1.48 1998/02/03 17:45:43 bde Exp */ #ifndef _SYS_SYSPROTO_H_ @@ -10,6 +10,8 @@ #include +struct proc; + struct nosys_args { int dummy; }; @@ -277,7 +279,7 @@ struct madvise_args { int behav; }; struct mincore_args { - caddr_t addr; + const void * addr; size_t len; char * vec; };