Regen.
This commit is contained in:
parent
9b7a9b2897
commit
dd92250590
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: freebsd_syscall.h,v 1.39 2000/12/09 06:19:41 mycroft Exp $ */
|
||||
/* $NetBSD: freebsd_syscall.h,v 1.40 2000/12/09 07:11:17 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.32 2000/12/09 05:27:29 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.33 2000/12/09 07:10:35 mycroft Exp
|
||||
*/
|
||||
|
||||
/* syscall: "syscall" ret: "int" args: */
|
||||
@ -65,8 +65,8 @@
|
||||
/* syscall: "olseek" ret: "long" args: "int" "long" "int" */
|
||||
#define FREEBSD_SYS_olseek 19
|
||||
|
||||
/* syscall: "getpid" ret: "pid_t" args: */
|
||||
#define FREEBSD_SYS_getpid 20
|
||||
/* syscall: "getpid_with_ppid" ret: "pid_t" args: */
|
||||
#define FREEBSD_SYS_getpid_with_ppid 20
|
||||
|
||||
/* syscall: "mount" ret: "int" args: "int" "const char *" "int" "caddr_t" */
|
||||
#define FREEBSD_SYS_mount 21
|
||||
@ -77,8 +77,8 @@
|
||||
/* syscall: "setuid" ret: "int" args: "uid_t" */
|
||||
#define FREEBSD_SYS_setuid 23
|
||||
|
||||
/* syscall: "getuid" ret: "uid_t" args: */
|
||||
#define FREEBSD_SYS_getuid 24
|
||||
/* syscall: "getuid_with_euid" ret: "uid_t" args: */
|
||||
#define FREEBSD_SYS_getuid_with_euid 24
|
||||
|
||||
/* syscall: "geteuid" ret: "uid_t" args: */
|
||||
#define FREEBSD_SYS_geteuid 25
|
||||
@ -146,8 +146,8 @@
|
||||
/* syscall: "sigaction" ret: "int" args: "int" "const struct sigaction13 *" "struct sigaction13 *" */
|
||||
#define FREEBSD_SYS_sigaction 46
|
||||
|
||||
/* syscall: "getgid" ret: "gid_t" args: */
|
||||
#define FREEBSD_SYS_getgid 47
|
||||
/* syscall: "getgid_with_egid" ret: "gid_t" args: */
|
||||
#define FREEBSD_SYS_getgid_with_egid 47
|
||||
|
||||
/* syscall: "sigprocmask" ret: "int" args: "int" "int" */
|
||||
#define FREEBSD_SYS_sigprocmask 48
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: freebsd_syscallargs.h,v 1.41 2000/12/09 06:19:41 mycroft Exp $ */
|
||||
/* $NetBSD: freebsd_syscallargs.h,v 1.42 2000/12/09 07:11:18 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.32 2000/12/09 05:27:29 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.33 2000/12/09 07:10:35 mycroft Exp
|
||||
*/
|
||||
|
||||
#ifndef _FREEBSD_SYS__SYSCALLARGS_H_
|
||||
@ -275,11 +275,11 @@ int freebsd_sys_chown(struct proc *, void *, register_t *);
|
||||
int sys_obreak(struct proc *, void *, register_t *);
|
||||
int sys_getfsstat(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 freebsd_sys_mount(struct proc *, void *, register_t *);
|
||||
int freebsd_sys_unmount(struct proc *, void *, register_t *);
|
||||
int sys_setuid(struct proc *, void *, register_t *);
|
||||
int sys_getuid(struct proc *, void *, register_t *);
|
||||
int sys_getuid_with_euid(struct proc *, void *, register_t *);
|
||||
int sys_geteuid(struct proc *, void *, register_t *);
|
||||
int freebsd_sys_ptrace(struct proc *, void *, register_t *);
|
||||
int sys_recvmsg(struct proc *, void *, register_t *);
|
||||
@ -305,7 +305,7 @@ int sys_ktrace(struct proc *, void *, register_t *);
|
||||
#else
|
||||
#endif
|
||||
int compat_13_sys_sigaction(struct proc *, void *, register_t *);
|
||||
int sys_getgid(struct proc *, void *, register_t *);
|
||||
int sys_getgid_with_egid(struct proc *, void *, register_t *);
|
||||
int compat_13_sys_sigprocmask(struct proc *, void *, register_t *);
|
||||
int sys___getlogin(struct proc *, void *, register_t *);
|
||||
int sys_setlogin(struct proc *, void *, register_t *);
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: freebsd_syscalls.c,v 1.39 2000/12/09 06:19:42 mycroft Exp $ */
|
||||
/* $NetBSD: freebsd_syscalls.c,v 1.40 2000/12/09 07:11:18 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.32 2000/12/09 05:27:29 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.33 2000/12/09 07:10:35 mycroft Exp
|
||||
*/
|
||||
|
||||
#if defined(_KERNEL) && !defined(_LKM)
|
||||
@ -47,11 +47,11 @@ const char *const freebsd_syscallnames[] = {
|
||||
"break", /* 17 = break */
|
||||
"getfsstat", /* 18 = getfsstat */
|
||||
"olseek", /* 19 = olseek */
|
||||
"getpid", /* 20 = getpid */
|
||||
"getpid_with_ppid", /* 20 = getpid_with_ppid */
|
||||
"mount", /* 21 = mount */
|
||||
"unmount", /* 22 = unmount */
|
||||
"setuid", /* 23 = setuid */
|
||||
"getuid", /* 24 = getuid */
|
||||
"getuid_with_euid", /* 24 = getuid_with_euid */
|
||||
"geteuid", /* 25 = geteuid */
|
||||
"ptrace", /* 26 = ptrace */
|
||||
"recvmsg", /* 27 = recvmsg */
|
||||
@ -78,7 +78,7 @@ const char *const freebsd_syscallnames[] = {
|
||||
"#45 (unimplemented ktrace)", /* 45 = unimplemented ktrace */
|
||||
#endif
|
||||
"sigaction", /* 46 = sigaction */
|
||||
"getgid", /* 47 = getgid */
|
||||
"getgid_with_egid", /* 47 = getgid_with_egid */
|
||||
"sigprocmask", /* 48 = sigprocmask */
|
||||
"__getlogin", /* 49 = __getlogin */
|
||||
"setlogin", /* 50 = setlogin */
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: freebsd_sysent.c,v 1.41 2000/12/09 06:19:42 mycroft Exp $ */
|
||||
/* $NetBSD: freebsd_sysent.c,v 1.42 2000/12/09 07:11:18 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.32 2000/12/09 05:27:29 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.33 2000/12/09 07:10:35 mycroft Exp
|
||||
*/
|
||||
|
||||
#if defined(_KERNEL) && !defined(_LKM)
|
||||
@ -68,7 +68,7 @@ struct sysent freebsd_sysent[] = {
|
||||
{ 3, s(struct compat_43_sys_lseek_args),
|
||||
compat_43_sys_lseek }, /* 19 = olseek */
|
||||
{ 0, 0,
|
||||
sys_getpid }, /* 20 = getpid */
|
||||
sys_getpid_with_ppid }, /* 20 = getpid_with_ppid */
|
||||
{ 4, s(struct freebsd_sys_mount_args),
|
||||
freebsd_sys_mount }, /* 21 = mount */
|
||||
{ 2, s(struct freebsd_sys_unmount_args),
|
||||
@ -76,7 +76,7 @@ struct sysent freebsd_sysent[] = {
|
||||
{ 1, s(struct sys_setuid_args),
|
||||
sys_setuid }, /* 23 = setuid */
|
||||
{ 0, 0,
|
||||
sys_getuid }, /* 24 = getuid */
|
||||
sys_getuid_with_euid }, /* 24 = getuid_with_euid */
|
||||
{ 0, 0,
|
||||
sys_geteuid }, /* 25 = geteuid */
|
||||
{ 4, s(struct freebsd_sys_ptrace_args),
|
||||
@ -127,7 +127,7 @@ struct sysent freebsd_sysent[] = {
|
||||
{ 3, s(struct compat_13_sys_sigaction_args),
|
||||
compat_13_sys_sigaction }, /* 46 = sigaction */
|
||||
{ 0, 0,
|
||||
sys_getgid }, /* 47 = getgid */
|
||||
sys_getgid_with_egid }, /* 47 = getgid_with_egid */
|
||||
{ 2, s(struct compat_13_sys_sigprocmask_args),
|
||||
compat_13_sys_sigprocmask }, /* 48 = sigprocmask */
|
||||
{ 2, s(struct sys___getlogin_args),
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: ibcs2_syscall.h,v 1.28 2000/12/09 05:37:03 mycroft Exp $ */
|
||||
/* $NetBSD: ibcs2_syscall.h,v 1.29 2000/12/09 07:11:18 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.24 2000/12/09 05:27:29 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.25 2000/12/09 07:10:35 mycroft Exp
|
||||
*/
|
||||
|
||||
/* syscall: "syscall" ret: "int" args: */
|
||||
@ -67,8 +67,8 @@
|
||||
/* syscall: "lseek" ret: "long" args: "int" "long" "int" */
|
||||
#define IBCS2_SYS_lseek 19
|
||||
|
||||
/* syscall: "getpid" ret: "pid_t" args: */
|
||||
#define IBCS2_SYS_getpid 20
|
||||
/* syscall: "getpid_with_ppid" ret: "pid_t" args: */
|
||||
#define IBCS2_SYS_getpid_with_ppid 20
|
||||
|
||||
/* syscall: "mount" ret: "int" args: "char *" "char *" "int" "int" "char *" "int" */
|
||||
#define IBCS2_SYS_mount 21
|
||||
@ -79,8 +79,8 @@
|
||||
/* syscall: "setuid" ret: "int" args: "int" */
|
||||
#define IBCS2_SYS_setuid 23
|
||||
|
||||
/* syscall: "getuid" ret: "uid_t" args: */
|
||||
#define IBCS2_SYS_getuid 24
|
||||
/* syscall: "getuid_with_euid" ret: "uid_t" args: */
|
||||
#define IBCS2_SYS_getuid_with_euid 24
|
||||
|
||||
/* syscall: "stime" ret: "int" args: "long *" */
|
||||
#define IBCS2_SYS_stime 25
|
||||
@ -136,8 +136,8 @@
|
||||
/* syscall: "setgid" ret: "int" args: "int" */
|
||||
#define IBCS2_SYS_setgid 46
|
||||
|
||||
/* syscall: "getgid" ret: "gid_t" args: */
|
||||
#define IBCS2_SYS_getgid 47
|
||||
/* syscall: "getgid_with_egid" ret: "gid_t" args: */
|
||||
#define IBCS2_SYS_getgid_with_egid 47
|
||||
|
||||
/* syscall: "sigsys" ret: "int" args: "int" "ibcs2_sig_t" */
|
||||
#define IBCS2_SYS_sigsys 48
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: ibcs2_syscallargs.h,v 1.29 2000/12/09 05:37:03 mycroft Exp $ */
|
||||
/* $NetBSD: ibcs2_syscallargs.h,v 1.30 2000/12/09 07:11:18 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.24 2000/12/09 05:27:29 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.25 2000/12/09 07:10:35 mycroft Exp
|
||||
*/
|
||||
|
||||
#ifndef _IBCS2_SYS__SYSCALLARGS_H_
|
||||
@ -442,11 +442,11 @@ int ibcs2_sys_chown(struct proc *, void *, register_t *);
|
||||
int sys_obreak(struct proc *, void *, register_t *);
|
||||
int ibcs2_sys_stat(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 ibcs2_sys_mount(struct proc *, void *, register_t *);
|
||||
int ibcs2_sys_umount(struct proc *, void *, register_t *);
|
||||
int ibcs2_sys_setuid(struct proc *, void *, register_t *);
|
||||
int sys_getuid(struct proc *, void *, register_t *);
|
||||
int sys_getuid_with_euid(struct proc *, void *, register_t *);
|
||||
int ibcs2_sys_stime(struct proc *, void *, register_t *);
|
||||
int ibcs2_sys_alarm(struct proc *, void *, register_t *);
|
||||
int ibcs2_sys_fstat(struct proc *, void *, register_t *);
|
||||
@ -465,7 +465,7 @@ int sys_pipe(struct proc *, void *, register_t *);
|
||||
int ibcs2_sys_times(struct proc *, void *, register_t *);
|
||||
int ibcs2_sys_plock(struct proc *, void *, register_t *);
|
||||
int ibcs2_sys_setgid(struct proc *, void *, register_t *);
|
||||
int sys_getgid(struct proc *, void *, register_t *);
|
||||
int sys_getgid_with_egid(struct proc *, void *, register_t *);
|
||||
int ibcs2_sys_sigsys(struct proc *, void *, register_t *);
|
||||
#ifdef SYSVMSG
|
||||
int ibcs2_sys_msgsys(struct proc *, void *, register_t *);
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: ibcs2_syscalls.c,v 1.28 2000/12/09 05:37:03 mycroft Exp $ */
|
||||
/* $NetBSD: ibcs2_syscalls.c,v 1.29 2000/12/09 07:11:19 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.24 2000/12/09 05:27:29 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.25 2000/12/09 07:10:35 mycroft Exp
|
||||
*/
|
||||
|
||||
#if defined(_KERNEL) && !defined(_LKM)
|
||||
@ -43,11 +43,11 @@ const char *const ibcs2_syscallnames[] = {
|
||||
"obreak", /* 17 = obreak */
|
||||
"stat", /* 18 = stat */
|
||||
"lseek", /* 19 = lseek */
|
||||
"getpid", /* 20 = getpid */
|
||||
"getpid_with_ppid", /* 20 = getpid_with_ppid */
|
||||
"mount", /* 21 = mount */
|
||||
"umount", /* 22 = umount */
|
||||
"setuid", /* 23 = setuid */
|
||||
"getuid", /* 24 = getuid */
|
||||
"getuid_with_euid", /* 24 = getuid_with_euid */
|
||||
"stime", /* 25 = stime */
|
||||
"#26 (unimplemented ibcs2_ptrace)", /* 26 = unimplemented ibcs2_ptrace */
|
||||
"alarm", /* 27 = alarm */
|
||||
@ -70,7 +70,7 @@ const char *const ibcs2_syscallnames[] = {
|
||||
"#44 (unimplemented profil)", /* 44 = unimplemented profil */
|
||||
"plock", /* 45 = plock */
|
||||
"setgid", /* 46 = setgid */
|
||||
"getgid", /* 47 = getgid */
|
||||
"getgid_with_egid", /* 47 = getgid_with_egid */
|
||||
"sigsys", /* 48 = sigsys */
|
||||
#ifdef SYSVMSG
|
||||
"msgsys", /* 49 = msgsys */
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: ibcs2_sysent.c,v 1.29 2000/12/09 05:37:03 mycroft Exp $ */
|
||||
/* $NetBSD: ibcs2_sysent.c,v 1.30 2000/12/09 07:11:19 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.24 2000/12/09 05:27:29 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.25 2000/12/09 07:10:35 mycroft Exp
|
||||
*/
|
||||
|
||||
#if defined(_KERNEL) && !defined(_LKM)
|
||||
@ -64,7 +64,7 @@ struct sysent ibcs2_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 */
|
||||
{ 6, s(struct ibcs2_sys_mount_args),
|
||||
ibcs2_sys_mount }, /* 21 = mount */
|
||||
{ 1, s(struct ibcs2_sys_umount_args),
|
||||
@ -72,7 +72,7 @@ struct sysent ibcs2_sysent[] = {
|
||||
{ 1, s(struct ibcs2_sys_setuid_args),
|
||||
ibcs2_sys_setuid }, /* 23 = setuid */
|
||||
{ 0, 0,
|
||||
sys_getuid }, /* 24 = getuid */
|
||||
sys_getuid_with_euid }, /* 24 = getuid_with_euid */
|
||||
{ 1, s(struct ibcs2_sys_stime_args),
|
||||
ibcs2_sys_stime }, /* 25 = stime */
|
||||
{ 0, 0,
|
||||
@ -118,7 +118,7 @@ struct sysent ibcs2_sysent[] = {
|
||||
{ 1, s(struct ibcs2_sys_setgid_args),
|
||||
ibcs2_sys_setgid }, /* 46 = setgid */
|
||||
{ 0, 0,
|
||||
sys_getgid }, /* 47 = getgid */
|
||||
sys_getgid_with_egid }, /* 47 = getgid_with_egid */
|
||||
{ 2, s(struct ibcs2_sys_sigsys_args),
|
||||
ibcs2_sys_sigsys }, /* 48 = sigsys */
|
||||
#ifdef SYSVMSG
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: osf1_syscall.h,v 1.39 2000/12/09 05:37:05 mycroft Exp $ */
|
||||
/* $NetBSD: osf1_syscall.h,v 1.40 2000/12/09 07:11:19 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.33 2000/12/09 05:27:30 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.34 2000/12/09 07:10:36 mycroft Exp
|
||||
*/
|
||||
|
||||
/* syscall: "syscall" ret: "int" args: */
|
||||
@ -58,8 +58,8 @@
|
||||
/* syscall: "lseek" ret: "off_t" args: "int" "off_t" "int" */
|
||||
#define OSF1_SYS_lseek 19
|
||||
|
||||
/* syscall: "getpid" ret: "pid_t" args: */
|
||||
#define OSF1_SYS_getpid 20
|
||||
/* syscall: "getpid_with_ppid" ret: "pid_t" args: */
|
||||
#define OSF1_SYS_getpid_with_ppid 20
|
||||
|
||||
/* syscall: "mount" ret: "int" args: "int" "const char *" "int" "caddr_t" */
|
||||
#define OSF1_SYS_mount 21
|
||||
@ -70,8 +70,8 @@
|
||||
/* syscall: "setuid" ret: "int" args: "uid_t" */
|
||||
#define OSF1_SYS_setuid 23
|
||||
|
||||
/* syscall: "getuid" ret: "uid_t" args: */
|
||||
#define OSF1_SYS_getuid 24
|
||||
/* syscall: "getuid_with_euid" ret: "uid_t" args: */
|
||||
#define OSF1_SYS_getuid_with_euid 24
|
||||
|
||||
/* syscall: "recvmsg_xopen" ret: "int" args: "int" "struct osf1_msghdr_xopen *" "int" */
|
||||
#define OSF1_SYS_recvmsg_xopen 27
|
||||
@ -104,8 +104,8 @@
|
||||
#define OSF1_SYS_open 45
|
||||
|
||||
/* 46 is obsolete sigaction */
|
||||
/* syscall: "getgid" ret: "gid_t" args: */
|
||||
#define OSF1_SYS_getgid 47
|
||||
/* syscall: "getgid_with_egid" ret: "gid_t" args: */
|
||||
#define OSF1_SYS_getgid_with_egid 47
|
||||
|
||||
/* syscall: "sigprocmask" ret: "int" args: "int" "sigset13_t" */
|
||||
#define OSF1_SYS_sigprocmask 48
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: osf1_syscallargs.h,v 1.40 2000/12/09 05:37:05 mycroft Exp $ */
|
||||
/* $NetBSD: osf1_syscallargs.h,v 1.41 2000/12/09 07:11:19 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.33 2000/12/09 05:27:30 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.34 2000/12/09 07:10:36 mycroft Exp
|
||||
*/
|
||||
|
||||
#ifndef _OSF1_SYS__SYSCALLARGS_H_
|
||||
@ -361,11 +361,11 @@ int sys___posix_chown(struct proc *, void *, register_t *);
|
||||
int sys_obreak(struct proc *, void *, register_t *);
|
||||
int osf1_sys_getfsstat(struct proc *, void *, register_t *);
|
||||
int osf1_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 osf1_sys_unmount(struct proc *, void *, register_t *);
|
||||
int osf1_sys_setuid(struct proc *, void *, register_t *);
|
||||
int sys_getuid(struct proc *, void *, register_t *);
|
||||
int sys_getuid_with_euid(struct proc *, void *, register_t *);
|
||||
int osf1_sys_recvmsg_xopen(struct proc *, void *, register_t *);
|
||||
int osf1_sys_sendmsg_xopen(struct proc *, void *, register_t *);
|
||||
int osf1_sys_access(struct proc *, void *, register_t *);
|
||||
@ -376,7 +376,7 @@ int sys_dup(struct proc *, void *, register_t *);
|
||||
int sys_pipe(struct proc *, void *, register_t *);
|
||||
int osf1_sys_set_program_attributes(struct proc *, void *, register_t *);
|
||||
int osf1_sys_open(struct proc *, void *, register_t *);
|
||||
int sys_getgid(struct proc *, void *, register_t *);
|
||||
int sys_getgid_with_egid(struct proc *, void *, register_t *);
|
||||
int compat_13_sys_sigprocmask(struct proc *, void *, register_t *);
|
||||
int sys___getlogin(struct proc *, void *, register_t *);
|
||||
int sys_setlogin(struct proc *, void *, register_t *);
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: osf1_syscalls.c,v 1.38 2000/12/09 05:37:05 mycroft Exp $ */
|
||||
/* $NetBSD: osf1_syscalls.c,v 1.39 2000/12/09 07:11:19 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.33 2000/12/09 05:27:30 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.34 2000/12/09 07:10:36 mycroft Exp
|
||||
*/
|
||||
|
||||
#if defined(_KERNEL) && !defined(_LKM)
|
||||
@ -42,11 +42,11 @@ const char *const osf1_syscallnames[] = {
|
||||
"obreak", /* 17 = obreak */
|
||||
"getfsstat", /* 18 = getfsstat */
|
||||
"lseek", /* 19 = lseek */
|
||||
"getpid", /* 20 = getpid */
|
||||
"getpid_with_ppid", /* 20 = getpid_with_ppid */
|
||||
"mount", /* 21 = mount */
|
||||
"unmount", /* 22 = unmount */
|
||||
"setuid", /* 23 = setuid */
|
||||
"getuid", /* 24 = getuid */
|
||||
"getuid_with_euid", /* 24 = getuid_with_euid */
|
||||
"#25 (unimplemented exec_with_loader)", /* 25 = unimplemented exec_with_loader */
|
||||
"#26 (unimplemented ptrace)", /* 26 = unimplemented ptrace */
|
||||
"recvmsg_xopen", /* 27 = recvmsg_xopen */
|
||||
@ -69,7 +69,7 @@ const char *const osf1_syscallnames[] = {
|
||||
"#44 (unimplemented profil)", /* 44 = unimplemented profil */
|
||||
"open", /* 45 = open */
|
||||
"#46 (obsolete sigaction)", /* 46 = obsolete sigaction */
|
||||
"getgid", /* 47 = getgid */
|
||||
"getgid_with_egid", /* 47 = getgid_with_egid */
|
||||
"sigprocmask", /* 48 = sigprocmask */
|
||||
"__getlogin", /* 49 = __getlogin */
|
||||
"setlogin", /* 50 = setlogin */
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: osf1_sysent.c,v 1.40 2000/12/09 05:37:05 mycroft Exp $ */
|
||||
/* $NetBSD: osf1_sysent.c,v 1.41 2000/12/09 07:11:20 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.33 2000/12/09 05:27:30 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.34 2000/12/09 07:10:36 mycroft Exp
|
||||
*/
|
||||
|
||||
#if defined(_KERNEL) && !defined(_LKM)
|
||||
@ -63,7 +63,7 @@ struct sysent osf1_sysent[] = {
|
||||
{ 3, s(struct osf1_sys_lseek_args),
|
||||
osf1_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 */
|
||||
{ 2, s(struct osf1_sys_unmount_args),
|
||||
@ -71,7 +71,7 @@ struct sysent osf1_sysent[] = {
|
||||
{ 1, s(struct osf1_sys_setuid_args),
|
||||
osf1_sys_setuid }, /* 23 = setuid */
|
||||
{ 0, 0,
|
||||
sys_getuid }, /* 24 = getuid */
|
||||
sys_getuid_with_euid }, /* 24 = getuid_with_euid */
|
||||
{ 0, 0,
|
||||
sys_nosys }, /* 25 = unimplemented exec_with_loader */
|
||||
{ 0, 0,
|
||||
@ -117,7 +117,7 @@ struct sysent osf1_sysent[] = {
|
||||
{ 0, 0,
|
||||
sys_nosys }, /* 46 = obsolete sigaction */
|
||||
{ 0, 0,
|
||||
sys_getgid }, /* 47 = getgid */
|
||||
sys_getgid_with_egid }, /* 47 = getgid_with_egid */
|
||||
{ 2, s(struct compat_13_sys_sigprocmask_args),
|
||||
compat_13_sys_sigprocmask }, /* 48 = sigprocmask */
|
||||
{ 2, s(struct sys___getlogin_args),
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: sunos_syscall.h,v 1.62 2000/12/09 05:37:06 mycroft Exp $ */
|
||||
/* $NetBSD: sunos_syscall.h,v 1.63 2000/12/09 07:11:20 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.56 2000/12/09 05:27:30 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.57 2000/12/09 07:10:36 mycroft Exp
|
||||
*/
|
||||
|
||||
/* syscall: "syscall" ret: "int" args: */
|
||||
@ -63,15 +63,15 @@
|
||||
/* syscall: "lseek" ret: "long" args: "int" "long" "int" */
|
||||
#define SUNOS_SYS_lseek 19
|
||||
|
||||
/* syscall: "getpid" ret: "pid_t" args: */
|
||||
#define SUNOS_SYS_getpid 20
|
||||
/* syscall: "getpid_with_ppid" ret: "pid_t" args: */
|
||||
#define SUNOS_SYS_getpid_with_ppid 20
|
||||
|
||||
/* 21 is obsolete sunos_old_mount */
|
||||
/* syscall: "setuid" ret: "int" args: "uid_t" */
|
||||
#define SUNOS_SYS_setuid 23
|
||||
|
||||
/* syscall: "getuid" ret: "uid_t" args: */
|
||||
#define SUNOS_SYS_getuid 24
|
||||
/* syscall: "getuid_with_euid" ret: "uid_t" args: */
|
||||
#define SUNOS_SYS_getuid_with_euid 24
|
||||
|
||||
/* syscall: "stime" ret: "int" args: "time_t *" */
|
||||
#define SUNOS_SYS_stime 25
|
||||
@ -106,8 +106,8 @@
|
||||
/* syscall: "setgid" ret: "int" args: "uid_t" */
|
||||
#define SUNOS_SYS_setgid 46
|
||||
|
||||
/* syscall: "getgid" ret: "gid_t" args: */
|
||||
#define SUNOS_SYS_getgid 47
|
||||
/* syscall: "getgid_with_egid" ret: "gid_t" args: */
|
||||
#define SUNOS_SYS_getgid_with_egid 47
|
||||
|
||||
/* syscall: "acct" ret: "int" args: "char *" */
|
||||
#define SUNOS_SYS_acct 51
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: sunos_syscallargs.h,v 1.47 2000/12/09 05:37:06 mycroft Exp $ */
|
||||
/* $NetBSD: sunos_syscallargs.h,v 1.48 2000/12/09 07:11:20 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.56 2000/12/09 05:27:30 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.57 2000/12/09 07:10:36 mycroft Exp
|
||||
*/
|
||||
|
||||
#ifndef _SUNOS_SYS__SYSCALLARGS_H_
|
||||
@ -250,9 +250,9 @@ int sys_chmod(struct proc *, void *, register_t *);
|
||||
int sys_chown(struct proc *, void *, register_t *);
|
||||
int sys_obreak(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 sys_setuid(struct proc *, void *, register_t *);
|
||||
int sys_getuid(struct proc *, void *, register_t *);
|
||||
int sys_getuid_with_euid(struct proc *, void *, register_t *);
|
||||
int sunos_sys_stime(struct proc *, void *, register_t *);
|
||||
int sunos_sys_ptrace(struct proc *, void *, register_t *);
|
||||
int sunos_sys_access(struct proc *, void *, register_t *);
|
||||
@ -264,7 +264,7 @@ int sys_dup(struct proc *, void *, register_t *);
|
||||
int sys_pipe(struct proc *, void *, register_t *);
|
||||
int sys_profil(struct proc *, void *, register_t *);
|
||||
int sys_setgid(struct proc *, void *, register_t *);
|
||||
int sys_getgid(struct proc *, void *, register_t *);
|
||||
int sys_getgid_with_egid(struct proc *, void *, register_t *);
|
||||
int sys_acct(struct proc *, void *, register_t *);
|
||||
int sunos_sys_mctl(struct proc *, void *, register_t *);
|
||||
int sunos_sys_ioctl(struct proc *, void *, register_t *);
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: sunos_syscalls.c,v 1.62 2000/12/09 05:37:06 mycroft Exp $ */
|
||||
/* $NetBSD: sunos_syscalls.c,v 1.63 2000/12/09 07:11:20 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.56 2000/12/09 05:27:30 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.57 2000/12/09 07:10:36 mycroft Exp
|
||||
*/
|
||||
|
||||
#if defined(_KERNEL) && !defined(_LKM)
|
||||
@ -44,11 +44,11 @@ const char *const sunos_syscallnames[] = {
|
||||
"break", /* 17 = break */
|
||||
"#18 (obsolete old_stat)", /* 18 = obsolete old_stat */
|
||||
"lseek", /* 19 = lseek */
|
||||
"getpid", /* 20 = getpid */
|
||||
"getpid_with_ppid", /* 20 = getpid_with_ppid */
|
||||
"#21 (obsolete sunos_old_mount)", /* 21 = obsolete sunos_old_mount */
|
||||
"#22 (unimplemented System V umount)", /* 22 = unimplemented System V umount */
|
||||
"setuid", /* 23 = setuid */
|
||||
"getuid", /* 24 = getuid */
|
||||
"getuid_with_euid", /* 24 = getuid_with_euid */
|
||||
"stime", /* 25 = stime */
|
||||
"ptrace", /* 26 = ptrace */
|
||||
"#27 (unimplemented old_sunos_alarm)", /* 27 = unimplemented old_sunos_alarm */
|
||||
@ -71,7 +71,7 @@ const char *const sunos_syscallnames[] = {
|
||||
"profil", /* 44 = profil */
|
||||
"#45 (unimplemented)", /* 45 = unimplemented */
|
||||
"setgid", /* 46 = setgid */
|
||||
"getgid", /* 47 = getgid */
|
||||
"getgid_with_egid", /* 47 = getgid_with_egid */
|
||||
"#48 (unimplemented sunos_ssig)", /* 48 = unimplemented sunos_ssig */
|
||||
"#49 (unimplemented reserved for USG)", /* 49 = unimplemented reserved for USG */
|
||||
"#50 (unimplemented reserved for USG)", /* 50 = unimplemented reserved for USG */
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* $NetBSD: sunos_sysent.c,v 1.55 2000/12/09 05:37:06 mycroft Exp $ */
|
||||
/* $NetBSD: sunos_sysent.c,v 1.56 2000/12/09 07:11:20 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.56 2000/12/09 05:27:30 mycroft Exp
|
||||
* created from NetBSD: syscalls.master,v 1.57 2000/12/09 07:10:36 mycroft Exp
|
||||
*/
|
||||
|
||||
#if defined(_KERNEL) && !defined(_LKM)
|
||||
@ -65,7 +65,7 @@ struct sysent sunos_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 */
|
||||
{ 0, 0,
|
||||
sys_nosys }, /* 21 = obsolete sunos_old_mount */
|
||||
{ 0, 0,
|
||||
@ -73,7 +73,7 @@ struct sysent sunos_sysent[] = {
|
||||
{ 1, s(struct sys_setuid_args),
|
||||
sys_setuid }, /* 23 = setuid */
|
||||
{ 0, 0,
|
||||
sys_getuid }, /* 24 = getuid */
|
||||
sys_getuid_with_euid }, /* 24 = getuid_with_euid */
|
||||
{ 1, s(struct sunos_sys_stime_args),
|
||||
sunos_sys_stime }, /* 25 = stime */
|
||||
{ 5, s(struct sunos_sys_ptrace_args),
|
||||
@ -119,7 +119,7 @@ struct sysent sunos_sysent[] = {
|
||||
{ 1, s(struct sys_setgid_args),
|
||||
sys_setgid }, /* 46 = setgid */
|
||||
{ 0, 0,
|
||||
sys_getgid }, /* 47 = getgid */
|
||||
sys_getgid_with_egid }, /* 47 = getgid_with_egid */
|
||||
{ 0, 0,
|
||||
sys_nosys }, /* 48 = unimplemented sunos_ssig */
|
||||
{ 0, 0,
|
||||
|
Loading…
Reference in New Issue
Block a user