regen: pad -> PAD

This commit is contained in:
pooka 2009-05-17 05:55:42 +00:00
parent 7e13bf31c7
commit ed09069bac
4 changed files with 19 additions and 19 deletions

View File

@ -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_

View File

@ -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;

View File

@ -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 <sys/cdefs.h>
__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)

View File

@ -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 <sys/cdefs.h>
__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"