Fix typo.
This commit is contained in:
parent
5a44558c93
commit
e6d9bc8787
@ -2,7 +2,7 @@
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.1 1995/10/10 01:19:39 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.2 1995/10/10 01:34:37 mycroft Exp
|
||||
*/
|
||||
|
||||
#define FREEBSD_SYS_syscall 0
|
||||
@ -134,8 +134,8 @@
|
||||
#define FREEBSD_SYS_osetregid 127
|
||||
#define FREEBSD_SYS_rename 128
|
||||
#define FREEBSD_SYS_otruncate 129
|
||||
#define FREEBSD_SYS_ftruncate 130
|
||||
#define FREEBSD_SYS_oftruncate 131
|
||||
#define FREEBSD_SYS_oftruncate 130
|
||||
#define FREEBSD_SYS_flock 131
|
||||
#define FREEBSD_SYS_mkfifo 132
|
||||
#define FREEBSD_SYS_sendto 133
|
||||
#define FREEBSD_SYS_shutdown 134
|
||||
|
@ -2,7 +2,7 @@
|
||||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.1 1995/10/10 01:19:39 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.2 1995/10/10 01:34:37 mycroft Exp
|
||||
*/
|
||||
|
||||
#define syscallarg(x) union { x datum; register_t pad; }
|
||||
|
@ -2,7 +2,7 @@
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.1 1995/10/10 01:19:39 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.2 1995/10/10 01:34:37 mycroft Exp
|
||||
*/
|
||||
|
||||
char *freebsd_syscallnames[] = {
|
||||
@ -144,8 +144,8 @@ char *freebsd_syscallnames[] = {
|
||||
"osetregid", /* 127 = osetregid */
|
||||
"rename", /* 128 = rename */
|
||||
"otruncate", /* 129 = otruncate */
|
||||
"ftruncate", /* 130 = ftruncate */
|
||||
"oftruncate", /* 131 = oftruncate */
|
||||
"oftruncate", /* 130 = oftruncate */
|
||||
"flock", /* 131 = flock */
|
||||
"mkfifo", /* 132 = mkfifo */
|
||||
"sendto", /* 133 = sendto */
|
||||
"shutdown", /* 134 = shutdown */
|
||||
|
@ -2,7 +2,7 @@
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.1 1995/10/10 01:19:39 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.2 1995/10/10 01:34:37 mycroft Exp
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
@ -287,9 +287,9 @@ struct sysent freebsd_sysent[] = {
|
||||
{ 2, s(struct compat_43_freebsd_sys_truncate_args),
|
||||
compat_43_freebsd_sys_truncate }, /* 129 = otruncate */
|
||||
{ 2, s(struct compat_43_sys_ftruncate_args),
|
||||
compat_43_sys_ftruncate }, /* 130 = ftruncate */
|
||||
compat_43_sys_ftruncate }, /* 130 = oftruncate */
|
||||
{ 2, s(struct sys_flock_args),
|
||||
sys_flock }, /* 131 = oftruncate */
|
||||
sys_flock }, /* 131 = flock */
|
||||
{ 2, s(struct freebsd_sys_mkfifo_args),
|
||||
freebsd_sys_mkfifo }, /* 132 = mkfifo */
|
||||
{ 6, s(struct sys_sendto_args),
|
||||
|
@ -1,4 +1,4 @@
|
||||
$NetBSD: syscalls.master,v 1.1 1995/10/10 01:19:39 mycroft Exp $
|
||||
$NetBSD: syscalls.master,v 1.2 1995/10/10 01:34:37 mycroft Exp $
|
||||
|
||||
; from: @(#)syscalls.master 8.2 (Berkeley) 1/13/94
|
||||
|
||||
@ -237,8 +237,9 @@
|
||||
128 STD { int freebsd_sys_rename(char *from, char *to); }
|
||||
129 STD { int compat_43_freebsd_sys_truncate(char *path, \
|
||||
long length); } otruncate
|
||||
130 NOARGS { int compat_43_sys_ftruncate(int fd, long length); }
|
||||
131 NOARGS { int sys_flock(int fd, int how); } oftruncate
|
||||
130 NOARGS { int compat_43_sys_ftruncate(int fd, long length); } \
|
||||
oftruncate
|
||||
131 NOARGS { int sys_flock(int fd, int how); }
|
||||
132 STD { int freebsd_sys_mkfifo(char *path, int mode); }
|
||||
133 NOARGS { int sys_sendto(int s, caddr_t buf, size_t len, \
|
||||
int flags, caddr_t to, int tolen); }
|
||||
|
Loading…
Reference in New Issue
Block a user