Regen for struct linux_stat64 fix.

This commit is contained in:
njoly 2009-10-30 10:58:15 +00:00
parent e8df95dcb7
commit a135bd0847
4 changed files with 16 additions and 16 deletions

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscall.h,v 1.34 2009/06/17 14:20:08 njoly Exp $ */
/* $NetBSD: linux_syscall.h,v 1.35 2009/10/30 10:58:15 njoly Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.32 2009/06/17 14:18:51 njoly Exp
* created from NetBSD: syscalls.master,v 1.33 2009/10/30 10:57:40 njoly Exp
*/
#ifndef _LINUX_SYS_SYSCALL_H_
@ -24,13 +24,13 @@
/* syscall: "close" ret: "int" args: "int" */
#define LINUX_SYS_close 3
/* syscall: "stat64" ret: "int" args: "const char *" "struct linux_stat *" */
/* syscall: "stat64" ret: "int" args: "const char *" "struct linux_stat64 *" */
#define LINUX_SYS_stat64 4
/* syscall: "fstat64" ret: "int" args: "int" "struct linux_stat *" */
/* syscall: "fstat64" ret: "int" args: "int" "struct linux_stat64 *" */
#define LINUX_SYS_fstat64 5
/* syscall: "lstat64" ret: "int" args: "const char *" "struct linux_stat *" */
/* syscall: "lstat64" ret: "int" args: "const char *" "struct linux_stat64 *" */
#define LINUX_SYS_lstat64 6
/* syscall: "poll" ret: "int" args: "struct pollfd *" "u_int" "int" */

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscallargs.h,v 1.34 2009/06/17 14:20:08 njoly Exp $ */
/* $NetBSD: linux_syscallargs.h,v 1.35 2009/10/30 10:58:15 njoly Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.32 2009/06/17 14:18:51 njoly Exp
* created from NetBSD: syscalls.master,v 1.33 2009/10/30 10:57:40 njoly Exp
*/
#ifndef _LINUX_SYS_SYSCALLARGS_H_
@ -46,19 +46,19 @@ struct sys_close_args;
struct linux_sys_stat64_args {
syscallarg(const char *) path;
syscallarg(struct linux_stat *) sp;
syscallarg(struct linux_stat64 *) sp;
};
check_syscall_args(linux_sys_stat64)
struct linux_sys_fstat64_args {
syscallarg(int) fd;
syscallarg(struct linux_stat *) sp;
syscallarg(struct linux_stat64 *) sp;
};
check_syscall_args(linux_sys_fstat64)
struct linux_sys_lstat64_args {
syscallarg(const char *) path;
syscallarg(struct linux_stat *) sp;
syscallarg(struct linux_stat64 *) sp;
};
check_syscall_args(linux_sys_lstat64)

View File

@ -1,14 +1,14 @@
/* $NetBSD: linux_syscalls.c,v 1.34 2009/06/17 14:20:08 njoly Exp $ */
/* $NetBSD: linux_syscalls.c,v 1.35 2009/10/30 10:58:15 njoly Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.32 2009/06/17 14:18:51 njoly Exp
* created from NetBSD: syscalls.master,v 1.33 2009/10/30 10:57:40 njoly Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.34 2009/06/17 14:20:08 njoly Exp $");
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.35 2009/10/30 10:58:15 njoly Exp $");
#if defined(_KERNEL_OPT)
#if defined(_KERNEL_OPT)

View File

@ -1,14 +1,14 @@
/* $NetBSD: linux_sysent.c,v 1.34 2009/06/17 14:20:08 njoly Exp $ */
/* $NetBSD: linux_sysent.c,v 1.35 2009/10/30 10:58:15 njoly Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.32 2009/06/17 14:18:51 njoly Exp
* created from NetBSD: syscalls.master,v 1.33 2009/10/30 10:57:40 njoly Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.34 2009/06/17 14:20:08 njoly Exp $");
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.35 2009/10/30 10:58:15 njoly Exp $");
#if defined(_KERNEL_OPT)
#include "opt_sysv.h"