Module Name: src Committed By: pooka Date: Fri May 15 15:52:40 UTC 2009
Modified Files: src/sys/kern: init_sysent.c syscalls.c src/sys/sys: syscall.h syscallargs.h Log Message: regen: pad -> PAD To generate a diff of this commit: cvs rdiff -u -r1.238 -r1.239 src/sys/kern/init_sysent.c cvs rdiff -u -r1.229 -r1.230 src/sys/kern/syscalls.c cvs rdiff -u -r1.226 -r1.227 src/sys/sys/syscall.h cvs rdiff -u -r1.208 -r1.209 src/sys/sys/syscallargs.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/kern/init_sysent.c diff -u src/sys/kern/init_sysent.c:1.238 src/sys/kern/init_sysent.c:1.239 --- src/sys/kern/init_sysent.c:1.238 Tue Jan 13 22:33:17 2009 +++ src/sys/kern/init_sysent.c Fri May 15 15:52:39 2009 @@ -1,15 +1,16 @@ -/* $NetBSD: init_sysent.c,v 1.238 2009/01/13 22:33:17 pooka Exp $ */ +/* $NetBSD: init_sysent.c,v 1.239 2009/05/15 15:52:39 pooka Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.221 2009/01/13 22:27:44 pooka Exp + * created from NetBSD: syscalls.master,v 1.227 2009/05/15 15:51:27 pooka Exp */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.238 2009/01/13 22:33:17 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.239 2009/05/15 15:52:39 pooka Exp $"); +#include "opt_modular.h" #include "opt_ntp.h" #include "opt_sysv.h" #include "fs_lfs.h" @@ -1232,4 +1233,3 @@ { 0, 0, 0, sys_nosys }, /* 511 = filler */ }; - Index: src/sys/kern/syscalls.c diff -u src/sys/kern/syscalls.c:1.229 src/sys/kern/syscalls.c:1.230 --- src/sys/kern/syscalls.c:1.229 Tue Jan 13 22:33:17 2009 +++ src/sys/kern/syscalls.c Fri May 15 15:52:39 2009 @@ -1,16 +1,17 @@ -/* $NetBSD: syscalls.c,v 1.229 2009/01/13 22:33:17 pooka Exp $ */ +/* $NetBSD: syscalls.c,v 1.230 2009/05/15 15:52:39 pooka Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.221 2009/01/13 22:27:44 pooka Exp + * created from NetBSD: syscalls.master,v 1.227 2009/05/15 15:51:27 pooka Exp */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.229 2009/01/13 22:33:17 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.230 2009/05/15 15:52:39 pooka Exp $"); #if defined(_KERNEL_OPT) +#include "opt_modular.h" #include "opt_ntp.h" #include "opt_sysv.h" #include "fs_lfs.h" Index: src/sys/sys/syscall.h diff -u src/sys/sys/syscall.h:1.226 src/sys/sys/syscall.h:1.227 --- src/sys/sys/syscall.h:1.226 Tue Jan 13 22:33:17 2009 +++ src/sys/sys/syscall.h Fri May 15 15:52:40 2009 @@ -1,10 +1,10 @@ -/* $NetBSD: syscall.h,v 1.226 2009/01/13 22:33:17 pooka Exp $ */ +/* $NetBSD: syscall.h,v 1.227 2009/05/15 15:52:40 pooka Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.221 2009/01/13 22:27:44 pooka Exp + * created from NetBSD: syscalls.master,v 1.227 2009/05/15 15:51:27 pooka Exp */ #ifndef _SYS_SYSCALL_H_ Index: src/sys/sys/syscallargs.h diff -u src/sys/sys/syscallargs.h:1.208 src/sys/sys/syscallargs.h:1.209 --- src/sys/sys/syscallargs.h:1.208 Tue Jan 13 22:33:17 2009 +++ src/sys/sys/syscallargs.h Fri May 15 15:52:40 2009 @@ -1,10 +1,10 @@ -/* $NetBSD: syscallargs.h,v 1.208 2009/01/13 22:33:17 pooka Exp $ */ +/* $NetBSD: syscallargs.h,v 1.209 2009/05/15 15:52:40 pooka Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.221 2009/01/13 22:27:44 pooka Exp + * created from NetBSD: syscalls.master,v 1.227 2009/05/15 15:51:27 pooka Exp */ #ifndef _SYS_SYSCALLARGS_H_ @@ -911,7 +911,7 @@ syscallarg(int) fd; syscallarg(void *) buf; syscallarg(size_t) nbyte; - syscallarg(int) pad; + syscallarg(int) PAD; syscallarg(off_t) offset; }; check_syscall_args(sys_pread) @@ -920,7 +920,7 @@ syscallarg(int) fd; syscallarg(const void *) buf; syscallarg(size_t) nbyte; - syscallarg(int) pad; + syscallarg(int) PAD; syscallarg(off_t) offset; }; check_syscall_args(sys_pwrite) @@ -1038,7 +1038,7 @@ syscallarg(int) prot; syscallarg(int) flags; syscallarg(int) fd; - syscallarg(long) pad; + syscallarg(long) PAD; syscallarg(off_t) pos; }; check_syscall_args(sys_mmap) @@ -1050,7 +1050,7 @@ struct sys_lseek_args { syscallarg(int) fd; - syscallarg(int) pad; + syscallarg(int) PAD; syscallarg(off_t) offset; syscallarg(int) whence; }; @@ -1058,14 +1058,14 @@ struct sys_truncate_args { syscallarg(const char *) path; - syscallarg(int) pad; + syscallarg(int) PAD; syscallarg(off_t) length; }; check_syscall_args(sys_truncate) struct sys_ftruncate_args { syscallarg(int) fd; - syscallarg(int) pad; + syscallarg(int) PAD; syscallarg(off_t) length; }; check_syscall_args(sys_ftruncate) @@ -1534,7 +1534,7 @@ syscallarg(int) fd; syscallarg(const struct iovec *) iovp; syscallarg(int) iovcnt; - syscallarg(int) pad; + syscallarg(int) PAD; syscallarg(off_t) offset; }; check_syscall_args(sys_preadv) @@ -1543,7 +1543,7 @@ syscallarg(int) fd; syscallarg(const struct iovec *) iovp; syscallarg(int) iovcnt; - syscallarg(int) pad; + syscallarg(int) PAD; syscallarg(off_t) offset; }; check_syscall_args(sys_pwritev) @@ -2263,7 +2263,7 @@ struct sys___posix_fadvise50_args { syscallarg(int) fd; - syscallarg(int) pad; + syscallarg(int) PAD; syscallarg(off_t) offset; syscallarg(off_t) len; syscallarg(int) advice;