diff options
author | peter <peter@FreeBSD.org> | 1996-03-02 17:01:36 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-03-02 17:01:36 +0000 |
commit | 880e9d4f5c17d0fb6103617034f6d5ee695d7400 (patch) | |
tree | 1b598743fc97fd717a5bfc486b1d1b6fcfafc086 /sys | |
parent | 56c5438768ddd3522e79c198c5f0dc9169815543 (diff) | |
download | FreeBSD-src-880e9d4f5c17d0fb6103617034f6d5ee695d7400.zip FreeBSD-src-880e9d4f5c17d0fb6103617034f6d5ee695d7400.tar.gz |
reran makesyscalls.sh after "int len" -> "size_t len" changes.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/init_sysent.c | 2 | ||||
-rw-r--r-- | sys/kern/syscalls.c | 2 | ||||
-rw-r--r-- | sys/sys/syscall-hide.h | 2 | ||||
-rw-r--r-- | sys/sys/syscall.h | 2 | ||||
-rw-r--r-- | sys/sys/sysproto.h | 12 |
5 files changed, 10 insertions, 10 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index d7024c5..ba630a7 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.26 1996/02/23 18:20:44 peter Exp + * created from Id: syscalls.master,v 1.27 1996/03/02 16:51:25 peter Exp */ #include <sys/types.h> diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index 7ac8b69..8533308 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.26 1996/02/23 18:20:44 peter Exp + * created from Id: syscalls.master,v 1.27 1996/03/02 16:51:25 peter Exp */ char *syscallnames[] = { diff --git a/sys/sys/syscall-hide.h b/sys/sys/syscall-hide.h index ab5d35f..6d10bc8 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.26 1996/02/23 18:20:44 peter Exp + * created from Id: syscalls.master,v 1.27 1996/03/02 16:51:25 peter Exp */ HIDE_POSIX(fork) diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index b3ebb56..a1ce237 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.26 1996/02/23 18:20:44 peter Exp + * created from Id: syscalls.master,v 1.27 1996/03/02 16:51:25 peter Exp */ #define SYS_syscall 0 diff --git a/sys/sys/sysproto.h b/sys/sys/sysproto.h index b9609d2..b9769c9 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.26 1996/02/23 18:20:44 peter Exp + * created from Id: syscalls.master,v 1.27 1996/03/02 16:51:25 peter Exp */ #ifndef _SYS_SYSPROTO_H_ @@ -249,7 +249,7 @@ struct getpagesize_args { }; struct msync_args { caddr_t addr; - int len; + size_t len; int flags; }; struct vfork_args { @@ -266,21 +266,21 @@ struct ovadvise_args { }; struct munmap_args { caddr_t addr; - int len; + size_t len; }; struct mprotect_args { caddr_t addr; - int len; + size_t len; int prot; }; struct madvise_args { caddr_t addr; - int len; + size_t len; int behav; }; struct mincore_args { caddr_t addr; - int len; + size_t len; char * vec; }; struct getgroups_args { |