Remade these after syscalls.master had changed.

This commit is contained in:
fvdl 1995-06-11 14:57:56 +00:00
parent fc7cfb5f0b
commit bfc9b29ab2
4 changed files with 13 additions and 7 deletions

View File

@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.4 1995/04/07 22:23:28 fvdl Exp
* created from NetBSD: syscalls.master,v 1.6 1995/06/11 14:57:01 fvdl Exp
*/
#define LINUX_SYS_syscall 0
@ -108,5 +108,6 @@
#define LINUX_SYS_linux_sigprocmask 126
#define LINUX_SYS_linux_getpgid 132
#define LINUX_SYS_fchdir 133
#define LINUX_SYS_linux_personality 136
#define LINUX_SYS_linux_llseek 140
#define LINUX_SYS_MAXSYSCALL 141

View File

@ -2,7 +2,7 @@
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.4 1995/04/07 22:23:28 fvdl Exp
* created from NetBSD: syscalls.master,v 1.6 1995/06/11 14:57:01 fvdl Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@ -247,6 +247,10 @@ struct linux_getpgid_args {
syscallarg(int) pid;
};
struct linux_personality_args {
syscallarg(int) per;
};
struct linux_llseek_args {
syscallarg(int) fd;
syscallarg(u_int32_t) ohigh;

View File

@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.4 1995/04/07 22:23:28 fvdl Exp
* created from NetBSD: syscalls.master,v 1.6 1995/06/11 14:57:01 fvdl Exp
*/
char *linux_syscallnames[] = {
@ -146,7 +146,7 @@ char *linux_syscallnames[] = {
"fchdir", /* 133 = fchdir */
"#134 (unimplemented linux_bdflush)", /* 134 = unimplemented linux_bdflush */
"#135 (unimplemented linux_sysfs)", /* 135 = unimplemented linux_sysfs */
"#136 (unimplemented linux_personality)", /* 136 = unimplemented linux_personality */
"linux_personality", /* 136 = linux_personality */
"#137 (unimplemented linux_afs_syscall)", /* 137 = unimplemented linux_afs_syscall */
"#138 (unimplemented linux_setfsuid)", /* 138 = unimplemented linux_setfsuid */
"#139 (unimplemented linux_getfsuid)", /* 139 = unimplemented linux_getfsuid */

View File

@ -2,7 +2,7 @@
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.4 1995/04/07 22:23:28 fvdl Exp
* created from NetBSD: syscalls.master,v 1.6 1995/06/11 14:57:01 fvdl Exp
*/
#include <sys/param.h>
@ -117,6 +117,7 @@ int mprotect();
int linux_sigprocmask();
int linux_getpgid();
int fchdir();
int linux_personality();
int linux_llseek();
#define s(type) sizeof(type)
@ -398,8 +399,8 @@ struct sysent linux_sysent[] = {
nosys }, /* 134 = unimplemented linux_bdflush */
{ 0, 0,
nosys }, /* 135 = unimplemented linux_sysfs */
{ 0, 0,
nosys }, /* 136 = unimplemented linux_personality */
{ 1, s(struct linux_personality_args),
linux_personality }, /* 136 = linux_personality */
{ 0, 0,
nosys }, /* 137 = unimplemented linux_afs_syscall */
{ 0, 0,