regen.
This commit is contained in:
parent
c7971c960e
commit
9949f7d556
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: sunos_syscall.h,v 1.52 1998/06/25 22:19:33 thorpej Exp $ */
|
||||
/* $NetBSD: sunos_syscall.h,v 1.53 1998/09/13 22:29:06 pk Exp $ */
|
||||
|
||||
/*
|
||||
* System call numbers.
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: sunos_syscallargs.h,v 1.35 1998/06/25 22:19:33 thorpej Exp $ */
|
||||
/* $NetBSD: sunos_syscallargs.h,v 1.36 1998/09/13 22:29:06 pk Exp $ */
|
||||
|
||||
/*
|
||||
* System call argument lists.
|
||||
@ -129,6 +129,10 @@ struct sunos_sys_sigvec_args {
|
||||
syscallarg(struct sigvec *) osv;
|
||||
};
|
||||
|
||||
struct sunos_sys_sigsuspend_args {
|
||||
syscallarg(int) mask;
|
||||
};
|
||||
|
||||
struct sunos_sys_sigreturn_args {
|
||||
syscallarg(struct sigcontext *) sigcntxp;
|
||||
};
|
||||
@ -297,7 +301,7 @@ int sys_listen __P((struct proc *, void *, register_t *));
|
||||
int sunos_sys_sigvec __P((struct proc *, void *, register_t *));
|
||||
int compat_43_sys_sigblock __P((struct proc *, void *, register_t *));
|
||||
int compat_43_sys_sigsetmask __P((struct proc *, void *, register_t *));
|
||||
int sys_sigsuspend __P((struct proc *, void *, register_t *));
|
||||
int sunos_sys_sigsuspend __P((struct proc *, void *, register_t *));
|
||||
int compat_43_sys_sigstack __P((struct proc *, void *, register_t *));
|
||||
int compat_43_sys_recvmsg __P((struct proc *, void *, register_t *));
|
||||
int compat_43_sys_sendmsg __P((struct proc *, void *, register_t *));
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: sunos_syscalls.c,v 1.51 1998/06/25 22:19:33 thorpej Exp $ */
|
||||
/* $NetBSD: sunos_syscalls.c,v 1.52 1998/09/13 22:29:06 pk Exp $ */
|
||||
|
||||
/*
|
||||
* System call names.
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: sunos_sysent.c,v 1.44 1998/06/25 22:19:34 thorpej Exp $ */
|
||||
/* $NetBSD: sunos_sysent.c,v 1.45 1998/09/13 22:29:06 pk Exp $ */
|
||||
|
||||
/*
|
||||
* System call switch table.
|
||||
@ -261,8 +261,8 @@ struct sysent sunos_sysent[] = {
|
||||
compat_43_sys_sigblock }, /* 109 = sigblock */
|
||||
{ 1, s(struct compat_43_sys_sigsetmask_args),
|
||||
compat_43_sys_sigsetmask }, /* 110 = sigsetmask */
|
||||
{ 1, s(struct sys_sigsuspend_args),
|
||||
sys_sigsuspend }, /* 111 = sigsuspend */
|
||||
{ 1, s(struct sunos_sys_sigsuspend_args),
|
||||
sunos_sys_sigsuspend }, /* 111 = sigsuspend */
|
||||
{ 2, s(struct compat_43_sys_sigstack_args),
|
||||
compat_43_sys_sigstack }, /* 112 = sigstack */
|
||||
{ 3, s(struct compat_43_sys_recvmsg_args),
|
||||
|
Loading…
Reference in New Issue
Block a user