regen for changed syscalls.master

This commit is contained in:
cgd 1999-04-27 18:41:37 +00:00
parent df6ae494ef
commit 3cb15b5b9b
4 changed files with 16 additions and 10 deletions

View File

@ -1,10 +1,10 @@
/* $NetBSD: osf1_syscall.h,v 1.21 1999/04/27 17:53:11 cgd Exp $ */
/* $NetBSD: osf1_syscall.h,v 1.22 1999/04/27 18:41:37 cgd Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.15 1999/04/27 17:52:44 cgd Exp
* created from NetBSD: syscalls.master,v 1.16 1999/04/27 18:40:53 cgd Exp
*/
/* syscall: "syscall" ret: "int" args: */
@ -155,7 +155,7 @@
/* syscall: "munmap" ret: "int" args: "caddr_t" "size_t" */
#define OSF1_SYS_munmap 73
/* syscall: "madvise" ret: "int" args: */
/* syscall: "madvise" ret: "int" args: "void *" "size_t" "int" */
#define OSF1_SYS_madvise 75
/* syscall: "getgroups" ret: "int" args: "u_int" "gid_t *" */

View File

@ -1,10 +1,10 @@
/* $NetBSD: osf1_syscallargs.h,v 1.21 1999/04/27 17:53:11 cgd Exp $ */
/* $NetBSD: osf1_syscallargs.h,v 1.22 1999/04/27 18:41:38 cgd Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.15 1999/04/27 17:52:44 cgd Exp
* created from NetBSD: syscalls.master,v 1.16 1999/04/27 18:40:53 cgd Exp
*/
#ifndef _OSF1_SYS__SYSCALLARGS_H_
@ -101,6 +101,12 @@ struct osf1_sys_mmap_args {
syscallarg(off_t) pos;
};
struct osf1_sys_madvise_args {
syscallarg(void *) addr;
syscallarg(size_t) len;
syscallarg(int) behav;
};
struct osf1_sys_fstat_args {
syscallarg(int) fd;
syscallarg(void *) sb;

View File

@ -1,10 +1,10 @@
/* $NetBSD: osf1_syscalls.c,v 1.19 1999/04/27 17:53:11 cgd Exp $ */
/* $NetBSD: osf1_syscalls.c,v 1.20 1999/04/27 18:41:38 cgd Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.15 1999/04/27 17:52:44 cgd Exp
* created from NetBSD: syscalls.master,v 1.16 1999/04/27 18:40:53 cgd Exp
*/
#if defined(_KERNEL) && !defined(_LKM)

View File

@ -1,10 +1,10 @@
/* $NetBSD: osf1_sysent.c,v 1.21 1999/04/27 17:53:11 cgd Exp $ */
/* $NetBSD: osf1_sysent.c,v 1.22 1999/04/27 18:41:39 cgd Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.15 1999/04/27 17:52:44 cgd Exp
* created from NetBSD: syscalls.master,v 1.16 1999/04/27 18:40:53 cgd Exp
*/
#include "opt_compat_43.h"
@ -169,7 +169,7 @@ struct sysent osf1_sysent[] = {
sys_munmap }, /* 73 = munmap */
{ 0, 0,
sys_nosys }, /* 74 = unimplemented mprotect */
{ 0, 0,
{ 3, s(struct osf1_sys_madvise_args),
osf1_sys_madvise }, /* 75 = madvise */
{ 0, 0,
sys_nosys }, /* 76 = unimplemented old vhangup */