From ed09069baca6b26d89f502ab90ea960e4e972620 Mon Sep 17 00:00:00 2001 From: pooka Date: Sun, 17 May 2009 05:55:42 +0000 Subject: [PATCH] regen: pad -> PAD --- sys/compat/netbsd32/netbsd32_syscall.h | 4 ++-- sys/compat/netbsd32/netbsd32_syscallargs.h | 22 +++++++++++----------- sys/compat/netbsd32/netbsd32_syscalls.c | 6 +++--- sys/compat/netbsd32/netbsd32_sysent.c | 6 +++--- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/sys/compat/netbsd32/netbsd32_syscall.h b/sys/compat/netbsd32/netbsd32_syscall.h index b9e776be102c..89c45dfe1557 100644 --- a/sys/compat/netbsd32/netbsd32_syscall.h +++ b/sys/compat/netbsd32/netbsd32_syscall.h @@ -1,10 +1,10 @@ -/* $NetBSD: netbsd32_syscall.h,v 1.87 2009/03/16 20:49:16 njoly Exp $ */ +/* $NetBSD: netbsd32_syscall.h,v 1.88 2009/05/17 05:55:42 pooka Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.79 2009/03/16 20:48:13 njoly Exp + * created from NetBSD: syscalls.master,v 1.80 2009/05/17 05:54:22 pooka Exp */ #ifndef _NETBSD32_SYS_SYSCALL_H_ diff --git a/sys/compat/netbsd32/netbsd32_syscallargs.h b/sys/compat/netbsd32/netbsd32_syscallargs.h index d9d962ffd05d..0176c2e6ad94 100644 --- a/sys/compat/netbsd32/netbsd32_syscallargs.h +++ b/sys/compat/netbsd32/netbsd32_syscallargs.h @@ -1,10 +1,10 @@ -/* $NetBSD: netbsd32_syscallargs.h,v 1.87 2009/03/16 20:49:16 njoly Exp $ */ +/* $NetBSD: netbsd32_syscallargs.h,v 1.88 2009/05/17 05:55:42 pooka Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.79 2009/03/16 20:48:13 njoly Exp + * created from NetBSD: syscalls.master,v 1.80 2009/05/17 05:54:22 pooka Exp */ #ifndef _NETBSD32_SYS_SYSCALLARGS_H_ @@ -911,7 +911,7 @@ struct netbsd32_pread_args { syscallarg(int) fd; syscallarg(netbsd32_voidp) buf; syscallarg(netbsd32_size_t) nbyte; - syscallarg(int) pad; + syscallarg(int) PAD; syscallarg(off_t) offset; }; check_syscall_args(netbsd32_pread) @@ -920,7 +920,7 @@ struct netbsd32_pwrite_args { syscallarg(int) fd; syscallarg(netbsd32_voidp) buf; syscallarg(netbsd32_size_t) nbyte; - syscallarg(int) pad; + syscallarg(int) PAD; syscallarg(off_t) offset; }; check_syscall_args(netbsd32_pwrite) @@ -1038,7 +1038,7 @@ struct netbsd32_mmap_args { syscallarg(int) prot; syscallarg(int) flags; syscallarg(int) fd; - syscallarg(netbsd32_long) pad; + syscallarg(netbsd32_long) PAD; syscallarg(off_t) pos; }; check_syscall_args(netbsd32_mmap) @@ -1050,7 +1050,7 @@ struct netbsd32____syscall_args { struct netbsd32_lseek_args { syscallarg(int) fd; - syscallarg(int) pad; + syscallarg(int) PAD; syscallarg(off_t) offset; syscallarg(int) whence; }; @@ -1058,14 +1058,14 @@ check_syscall_args(netbsd32_lseek) struct netbsd32_truncate_args { syscallarg(netbsd32_charp) path; - syscallarg(int) pad; + syscallarg(int) PAD; syscallarg(off_t) length; }; check_syscall_args(netbsd32_truncate) struct netbsd32_ftruncate_args { syscallarg(int) fd; - syscallarg(int) pad; + syscallarg(int) PAD; syscallarg(off_t) length; }; check_syscall_args(netbsd32_ftruncate) @@ -1460,7 +1460,7 @@ struct netbsd32_preadv_args { syscallarg(int) fd; syscallarg(netbsd32_iovecp_t) iovp; syscallarg(int) iovcnt; - syscallarg(int) pad; + syscallarg(int) PAD; syscallarg(off_t) offset; }; check_syscall_args(netbsd32_preadv) @@ -1469,7 +1469,7 @@ struct netbsd32_pwritev_args { syscallarg(int) fd; syscallarg(netbsd32_iovecp_t) iovp; syscallarg(int) iovcnt; - syscallarg(int) pad; + syscallarg(int) PAD; syscallarg(off_t) offset; }; check_syscall_args(netbsd32_pwritev) @@ -2098,7 +2098,7 @@ check_syscall_args(netbsd32_mremap) struct netbsd32___posix_fadvise50_args { syscallarg(int) fd; - syscallarg(int) pad; + syscallarg(int) PAD; syscallarg(off_t) offset; syscallarg(off_t) len; syscallarg(int) advice; diff --git a/sys/compat/netbsd32/netbsd32_syscalls.c b/sys/compat/netbsd32/netbsd32_syscalls.c index 2a3483c9cd4f..1c1dd3cc91f5 100644 --- a/sys/compat/netbsd32/netbsd32_syscalls.c +++ b/sys/compat/netbsd32/netbsd32_syscalls.c @@ -1,14 +1,14 @@ -/* $NetBSD: netbsd32_syscalls.c,v 1.86 2009/03/16 20:49:16 njoly Exp $ */ +/* $NetBSD: netbsd32_syscalls.c,v 1.87 2009/05/17 05:55:42 pooka Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.79 2009/03/16 20:48:13 njoly Exp + * created from NetBSD: syscalls.master,v 1.80 2009/05/17 05:54:22 pooka Exp */ #include -__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls.c,v 1.86 2009/03/16 20:49:16 njoly Exp $"); +__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls.c,v 1.87 2009/05/17 05:55:42 pooka Exp $"); #if defined(_KERNEL_OPT) #if defined(_KERNEL_OPT) diff --git a/sys/compat/netbsd32/netbsd32_sysent.c b/sys/compat/netbsd32/netbsd32_sysent.c index cd2eef69e340..fe6524fa70f3 100644 --- a/sys/compat/netbsd32/netbsd32_sysent.c +++ b/sys/compat/netbsd32/netbsd32_sysent.c @@ -1,14 +1,14 @@ -/* $NetBSD: netbsd32_sysent.c,v 1.86 2009/03/16 20:49:16 njoly Exp $ */ +/* $NetBSD: netbsd32_sysent.c,v 1.87 2009/05/17 05:55:42 pooka Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.79 2009/03/16 20:48:13 njoly Exp + * created from NetBSD: syscalls.master,v 1.80 2009/05/17 05:54:22 pooka Exp */ #include -__KERNEL_RCSID(0, "$NetBSD: netbsd32_sysent.c,v 1.86 2009/03/16 20:49:16 njoly Exp $"); +__KERNEL_RCSID(0, "$NetBSD: netbsd32_sysent.c,v 1.87 2009/05/17 05:55:42 pooka Exp $"); #if defined(_KERNEL_OPT) #include "opt_compat_netbsd.h"