diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-14 04:47:45 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-14 04:47:45 +0000 |
commit | 9043b73586e8eff30f33a97a5b1802f1032c3288 (patch) | |
tree | 5238a6096e950295682af33b86d1ed58fe4b596e /sys/compat/hpux/hpux_sig.c | |
parent | dd79441110b3311ff76301f49a0a640d84ead876 (diff) |
update from netbsd
Diffstat (limited to 'sys/compat/hpux/hpux_sig.c')
-rw-r--r-- | sys/compat/hpux/hpux_sig.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sys/compat/hpux/hpux_sig.c b/sys/compat/hpux/hpux_sig.c index 8443e5ae282..07bd6633f7c 100644 --- a/sys/compat/hpux/hpux_sig.c +++ b/sys/compat/hpux/hpux_sig.c @@ -1,4 +1,4 @@ -/* $NetBSD: hpux_sig.c,v 1.14 1995/10/07 06:26:38 mycroft Exp $ */ +/* $NetBSD: hpux_sig.c,v 1.15 1995/11/28 08:39:50 thorpej Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -347,14 +347,16 @@ hpux_sys_sigaction(p, v, retval) return (0); } -#ifdef COMPAT_HPUX_6X int -compat_hpux_6x_sys_ssig(p, v, retval) +hpux_sys_ssig_6x(p, v, retval) struct proc *p; void *v; register_t *retval; { - struct compat_hpux_6x_sys_ssig_args *uap = v; + struct hpux_sys_ssig_6x_args /* { + syscallarg(int) signo; + syscallarg(sig_t) fun; + } */ *uap = v; register int a; struct sigaction vec; register struct sigaction *sa = &vec; @@ -383,7 +385,6 @@ compat_hpux_6x_sys_ssig(p, v, retval) #endif return (0); } -#endif /* signal numbers: convert from HPUX to BSD */ int |