Syscalls.master was changed
This commit is contained in:
parent
57b6b2745e
commit
5ad8a15866
@ -2,7 +2,7 @@
|
|||||||
* System call numbers.
|
* System call numbers.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.26 1995/04/22 23:45:33 christos Exp
|
* created from NetBSD: syscalls.master,v 1.28 1995/06/24 20:23:02 christos Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define SUNOS_SYS_syscall 0
|
#define SUNOS_SYS_syscall 0
|
||||||
@ -89,7 +89,7 @@
|
|||||||
#define SUNOS_SYS_bind 104
|
#define SUNOS_SYS_bind 104
|
||||||
#define SUNOS_SYS_sunos_setsockopt 105
|
#define SUNOS_SYS_sunos_setsockopt 105
|
||||||
#define SUNOS_SYS_listen 106
|
#define SUNOS_SYS_listen 106
|
||||||
#define SUNOS_SYS_compat_43_sigvec 108
|
#define SUNOS_SYS_sigvec 108
|
||||||
#define SUNOS_SYS_compat_43_sigblock 109
|
#define SUNOS_SYS_compat_43_sigblock 109
|
||||||
#define SUNOS_SYS_compat_43_sigsetmask 110
|
#define SUNOS_SYS_compat_43_sigsetmask 110
|
||||||
#define SUNOS_SYS_sigsuspend 111
|
#define SUNOS_SYS_sigsuspend 111
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* System call argument lists.
|
* System call argument lists.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.26 1995/04/22 23:45:33 christos Exp
|
* created from NetBSD: syscalls.master,v 1.28 1995/06/24 20:23:02 christos Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define syscallarg(x) union { x datum; register_t pad; }
|
#define syscallarg(x) union { x datum; register_t pad; }
|
||||||
@ -105,6 +105,12 @@ struct sunos_setsockopt_args {
|
|||||||
syscallarg(int) valsize;
|
syscallarg(int) valsize;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct sigvec_args {
|
||||||
|
syscallarg(int) signum;
|
||||||
|
syscallarg(struct sigvec *) nsv;
|
||||||
|
syscallarg(struct sigvec *) osv;
|
||||||
|
};
|
||||||
|
|
||||||
struct sunos_sigreturn_args {
|
struct sunos_sigreturn_args {
|
||||||
syscallarg(struct sigcontext *) sigcntxp;
|
syscallarg(struct sigcontext *) sigcntxp;
|
||||||
};
|
};
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* System call names.
|
* System call names.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.26 1995/04/22 23:45:33 christos Exp
|
* created from NetBSD: syscalls.master,v 1.28 1995/06/24 20:23:02 christos Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
char *sunos_syscallnames[] = {
|
char *sunos_syscallnames[] = {
|
||||||
@ -114,7 +114,7 @@ char *sunos_syscallnames[] = {
|
|||||||
"sunos_setsockopt", /* 105 = sunos_setsockopt */
|
"sunos_setsockopt", /* 105 = sunos_setsockopt */
|
||||||
"listen", /* 106 = listen */
|
"listen", /* 106 = listen */
|
||||||
"#107 (unimplemented vtimes)", /* 107 = unimplemented vtimes */
|
"#107 (unimplemented vtimes)", /* 107 = unimplemented vtimes */
|
||||||
"compat_43_sigvec", /* 108 = compat_43_sigvec */
|
"sigvec", /* 108 = sigvec */
|
||||||
"compat_43_sigblock", /* 109 = compat_43_sigblock */
|
"compat_43_sigblock", /* 109 = compat_43_sigblock */
|
||||||
"compat_43_sigsetmask", /* 110 = compat_43_sigsetmask */
|
"compat_43_sigsetmask", /* 110 = compat_43_sigsetmask */
|
||||||
"sigsuspend", /* 111 = sigsuspend */
|
"sigsuspend", /* 111 = sigsuspend */
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* System call switch table.
|
* System call switch table.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.26 1995/04/22 23:45:33 christos Exp
|
* created from NetBSD: syscalls.master,v 1.28 1995/06/24 20:23:02 christos Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
@ -90,7 +90,7 @@ int compat_43_recv();
|
|||||||
int bind();
|
int bind();
|
||||||
int sunos_setsockopt();
|
int sunos_setsockopt();
|
||||||
int listen();
|
int listen();
|
||||||
int compat_43_sigvec();
|
int sigvec();
|
||||||
int compat_43_sigblock();
|
int compat_43_sigblock();
|
||||||
int compat_43_sigsetmask();
|
int compat_43_sigsetmask();
|
||||||
int sigsuspend();
|
int sigsuspend();
|
||||||
@ -460,8 +460,8 @@ struct sysent sunos_sysent[] = {
|
|||||||
listen }, /* 106 = listen */
|
listen }, /* 106 = listen */
|
||||||
{ 0, 0,
|
{ 0, 0,
|
||||||
nosys }, /* 107 = unimplemented vtimes */
|
nosys }, /* 107 = unimplemented vtimes */
|
||||||
{ 3, s(struct compat_43_sigvec_args),
|
{ 3, s(struct sigvec_args),
|
||||||
compat_43_sigvec }, /* 108 = compat_43_sigvec */
|
sigvec }, /* 108 = sigvec */
|
||||||
{ 1, s(struct compat_43_sigblock_args),
|
{ 1, s(struct compat_43_sigblock_args),
|
||||||
compat_43_sigblock }, /* 109 = compat_43_sigblock */
|
compat_43_sigblock }, /* 109 = compat_43_sigblock */
|
||||||
{ 1, s(struct compat_43_sigsetmask_args),
|
{ 1, s(struct compat_43_sigsetmask_args),
|
||||||
|
Loading…
Reference in New Issue
Block a user