Syscalls.master was changed

This commit is contained in:
christos 1995-06-24 20:26:41 +00:00
parent 57b6b2745e
commit 5ad8a15866
4 changed files with 15 additions and 9 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.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
@ -89,7 +89,7 @@
#define SUNOS_SYS_bind 104
#define SUNOS_SYS_sunos_setsockopt 105
#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_sigsetmask 110
#define SUNOS_SYS_sigsuspend 111

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.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; }
@ -105,6 +105,12 @@ struct sunos_setsockopt_args {
syscallarg(int) valsize;
};
struct sigvec_args {
syscallarg(int) signum;
syscallarg(struct sigvec *) nsv;
syscallarg(struct sigvec *) osv;
};
struct sunos_sigreturn_args {
syscallarg(struct sigcontext *) sigcntxp;
};

View File

@ -2,7 +2,7 @@
* System call names.
*
* 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[] = {
@ -114,7 +114,7 @@ char *sunos_syscallnames[] = {
"sunos_setsockopt", /* 105 = sunos_setsockopt */
"listen", /* 106 = listen */
"#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_sigsetmask", /* 110 = compat_43_sigsetmask */
"sigsuspend", /* 111 = sigsuspend */

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.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>
@ -90,7 +90,7 @@ int compat_43_recv();
int bind();
int sunos_setsockopt();
int listen();
int compat_43_sigvec();
int sigvec();
int compat_43_sigblock();
int compat_43_sigsetmask();
int sigsuspend();
@ -460,8 +460,8 @@ struct sysent sunos_sysent[] = {
listen }, /* 106 = listen */
{ 0, 0,
nosys }, /* 107 = unimplemented vtimes */
{ 3, s(struct compat_43_sigvec_args),
compat_43_sigvec }, /* 108 = compat_43_sigvec */
{ 3, s(struct sigvec_args),
sigvec }, /* 108 = sigvec */
{ 1, s(struct compat_43_sigblock_args),
compat_43_sigblock }, /* 109 = compat_43_sigblock */
{ 1, s(struct compat_43_sigsetmask_args),