This commit is contained in:
mycroft 2000-12-11 04:54:29 +00:00
parent 6d0c28a87c
commit cfe0002fc5
4 changed files with 13 additions and 13 deletions

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscall.h,v 1.27 2000/12/09 12:27:01 jdolecek Exp $ */
/* $NetBSD: linux_syscall.h,v 1.28 2000/12/11 04:54:29 mycroft Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.26 2000/12/09 12:23:35 jdolecek Exp
* created from NetBSD: syscalls.master,v 1.27 2000/12/11 04:54:13 mycroft Exp
*/
/* syscall: "syscall" ret: "int" args: */
@ -55,8 +55,8 @@
/* syscall: "lseek" ret: "long" args: "int" "long" "int" */
#define LINUX_SYS_lseek 19
/* syscall: "getpid" ret: "pid_t" args: */
#define LINUX_SYS_getpid 20
/* syscall: "getpid_with_ppid" ret: "pid_t" args: */
#define LINUX_SYS_getpid_with_ppid 20
/* syscall: "setuid" ret: "int" args: "uid_t" */
#define LINUX_SYS_setuid 23

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscallargs.h,v 1.27 2000/12/09 12:27:01 jdolecek Exp $ */
/* $NetBSD: linux_syscallargs.h,v 1.28 2000/12/11 04:54:29 mycroft Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.26 2000/12/09 12:23:35 jdolecek Exp
* created from NetBSD: syscalls.master,v 1.27 2000/12/11 04:54:13 mycroft Exp
*/
#ifndef _LINUX_SYS__SYSCALLARGS_H_
@ -549,7 +549,7 @@ int linux_sys_chmod(struct proc *, void *, register_t *);
int linux_sys_chown(struct proc *, void *, register_t *);
int linux_sys_brk(struct proc *, void *, register_t *);
int compat_43_sys_lseek(struct proc *, void *, register_t *);
int sys_getpid(struct proc *, void *, register_t *);
int sys_getpid_with_ppid(struct proc *, void *, register_t *);
int osf1_sys_mount(struct proc *, void *, register_t *);
int sys_setuid(struct proc *, void *, register_t *);
int sys_getuid(struct proc *, void *, register_t *);

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscalls.c,v 1.28 2000/12/09 12:27:01 jdolecek Exp $ */
/* $NetBSD: linux_syscalls.c,v 1.29 2000/12/11 04:54:29 mycroft Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.26 2000/12/09 12:23:35 jdolecek Exp
* created from NetBSD: syscalls.master,v 1.27 2000/12/11 04:54:13 mycroft Exp
*/
#if defined(_KERNEL) && !defined(_LKM)
@ -51,7 +51,7 @@ const char *const linux_syscallnames[] = {
"brk", /* 17 = brk */
"#18 (unimplemented)", /* 18 = unimplemented */
"lseek", /* 19 = lseek */
"getpid", /* 20 = getpid */
"getpid_with_ppid", /* 20 = getpid_with_ppid */
"mount", /* 21 = mount */
"#22 (unimplemented umount)", /* 22 = unimplemented umount */
"setuid", /* 23 = setuid */

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_sysent.c,v 1.28 2000/12/09 12:27:01 jdolecek Exp $ */
/* $NetBSD: linux_sysent.c,v 1.29 2000/12/11 04:54:29 mycroft Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.26 2000/12/09 12:23:35 jdolecek Exp
* created from NetBSD: syscalls.master,v 1.27 2000/12/11 04:54:13 mycroft Exp
*/
#if defined(_KERNEL) && !defined(_LKM)
@ -72,7 +72,7 @@ struct sysent linux_sysent[] = {
{ 3, s(struct compat_43_sys_lseek_args),
compat_43_sys_lseek }, /* 19 = lseek */
{ 0, 0,
sys_getpid }, /* 20 = getpid */
sys_getpid_with_ppid }, /* 20 = getpid_with_ppid */
{ 4, s(struct osf1_sys_mount_args),
osf1_sys_mount }, /* 21 = mount */
{ 0, 0,