diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-01-28 19:59:12 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-01-28 19:59:12 +0000 |
commit | c056e054c99423a238ceb9726fd6fdfb41b3ca0e (patch) | |
tree | 1eacd56ca16e18c177161ca47fb454c762b2456c /sys/compat/hpux/hppa | |
parent | c8c4525ddb2c026993ac0bce3ef1651951330f8c (diff) |
HP-UX getpgrp2() is documented as returning the same value than getpgid(),
with the same error conditions. So reimplement it as the real thing.
ok guenther@
Diffstat (limited to 'sys/compat/hpux/hppa')
-rw-r--r-- | sys/compat/hpux/hppa/syscalls.master | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/hpux/hppa/syscalls.master b/sys/compat/hpux/hppa/syscalls.master index c3d88a45d0a..c8299c9689e 100644 --- a/sys/compat/hpux/hppa/syscalls.master +++ b/sys/compat/hpux/hppa/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.8 2004/09/19 22:04:15 mickey Exp $ + $OpenBSD: syscalls.master,v 1.9 2010/01/28 19:59:09 miod Exp $ ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93 @@ -141,7 +141,7 @@ 78 UNIMPL 79 NOARGS { int sys_getgroups(u_int gidsetsize, gid_t *gidset); } 80 NOARGS { int sys_setgroups(u_int gidsetsize, gid_t *gidset); } -81 STD { int hpux_sys_getpgrp2(pid_t pid); } +81 NOARGS { pid_t sys_getpgid(pid_t pid); } 82 STD { int hpux_sys_setpgrp2(pid_t pid, pid_t pgid); } 83 NOARGS { int sys_setitimer(u_int which, \ struct itimerval *itv, struct itimerval *oitv); } |