regen after adding flock.
This commit is contained in:
parent
b2ddb9701f
commit
1880c09133
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: osf1_syscall.h,v 1.44 2001/05/30 11:37:30 mrg Exp $ */
|
||||
/* $NetBSD: osf1_syscall.h,v 1.45 2001/06/23 02:46:25 dmcmahill Exp $ */
|
||||
|
||||
/*
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.35 2001/04/04 19:41:00 ross Exp
|
||||
* created from NetBSD: syscalls.master,v 1.37 2001/06/23 02:45:54 dmcmahill Exp
|
||||
*/
|
||||
|
||||
/* syscall: "syscall" ret: "int" args: */
|
||||
|
@ -288,6 +288,9 @@
|
|||
/* syscall: "ftruncate" ret: "int" args: "int" "off_t" */
|
||||
#define OSF1_SYS_ftruncate 130
|
||||
|
||||
/* syscall: "flock" ret: "int" args: "int" "int" */
|
||||
#define OSF1_SYS_flock 131
|
||||
|
||||
/* syscall: "setgid" ret: "int" args: "gid_t" */
|
||||
#define OSF1_SYS_setgid 132
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: osf1_syscallargs.h,v 1.45 2001/05/30 11:37:30 mrg Exp $ */
|
||||
/* $NetBSD: osf1_syscallargs.h,v 1.46 2001/06/23 02:46:25 dmcmahill Exp $ */
|
||||
|
||||
/*
|
||||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.35 2001/04/04 19:41:00 ross Exp
|
||||
* created from NetBSD: syscalls.master,v 1.37 2001/06/23 02:45:54 dmcmahill Exp
|
||||
*/
|
||||
|
||||
#ifndef _OSF1_SYS__SYSCALLARGS_H_
|
||||
|
@ -452,6 +452,7 @@ int compat_43_sys_recvfrom(struct proc *, void *, register_t *);
|
|||
int sys___posix_rename(struct proc *, void *, register_t *);
|
||||
int osf1_sys_truncate(struct proc *, void *, register_t *);
|
||||
int osf1_sys_ftruncate(struct proc *, void *, register_t *);
|
||||
int sys_flock(struct proc *, void *, register_t *);
|
||||
int osf1_sys_setgid(struct proc *, void *, register_t *);
|
||||
int osf1_sys_sendto(struct proc *, void *, register_t *);
|
||||
int sys_shutdown(struct proc *, void *, register_t *);
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: osf1_syscalls.c,v 1.43 2001/05/30 11:37:30 mrg Exp $ */
|
||||
/* $NetBSD: osf1_syscalls.c,v 1.44 2001/06/23 02:46:25 dmcmahill Exp $ */
|
||||
|
||||
/*
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.35 2001/04/04 19:41:00 ross Exp
|
||||
* created from NetBSD: syscalls.master,v 1.37 2001/06/23 02:45:54 dmcmahill Exp
|
||||
*/
|
||||
|
||||
#if defined(_KERNEL_OPT)
|
||||
|
@ -153,7 +153,7 @@ const char *const osf1_syscallnames[] = {
|
|||
"__posix_rename", /* 128 = __posix_rename */
|
||||
"truncate", /* 129 = truncate */
|
||||
"ftruncate", /* 130 = ftruncate */
|
||||
"#131 (unimplemented flock)", /* 131 = unimplemented flock */
|
||||
"flock", /* 131 = flock */
|
||||
"setgid", /* 132 = setgid */
|
||||
"sendto", /* 133 = sendto */
|
||||
"shutdown", /* 134 = shutdown */
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: osf1_sysent.c,v 1.45 2001/05/30 11:37:30 mrg Exp $ */
|
||||
/* $NetBSD: osf1_sysent.c,v 1.46 2001/06/23 02:46:25 dmcmahill Exp $ */
|
||||
|
||||
/*
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.35 2001/04/04 19:41:00 ross Exp
|
||||
* created from NetBSD: syscalls.master,v 1.37 2001/06/23 02:45:54 dmcmahill Exp
|
||||
*/
|
||||
|
||||
#if defined(_KERNEL_OPT)
|
||||
|
@ -284,8 +284,8 @@ struct sysent osf1_sysent[] = {
|
|||
osf1_sys_truncate }, /* 129 = truncate */
|
||||
{ 2, s(struct osf1_sys_ftruncate_args), 0,
|
||||
osf1_sys_ftruncate }, /* 130 = ftruncate */
|
||||
{ 0, 0, 0,
|
||||
sys_nosys }, /* 131 = unimplemented flock */
|
||||
{ 2, s(struct sys_flock_args), 0,
|
||||
sys_flock }, /* 131 = flock */
|
||||
{ 1, s(struct osf1_sys_setgid_args), 0,
|
||||
osf1_sys_setgid }, /* 132 = setgid */
|
||||
{ 6, s(struct osf1_sys_sendto_args), 0,
|
||||
|
|
Loading…
Reference in New Issue