From: Roland McGrath Date: Thu, 26 Jan 1995 01:25:38 +0000 (+0000) Subject: Use subcall 4 to __pgrpsys. X-Git-Tag: glibc-2.16-ports-before-merge~3975 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c54278121e1909f125c8997c32eedfb14f4a1b06;p=thirdparty%2Fglibc.git Use subcall 4 to __pgrpsys. --- diff --git a/sysdeps/unix/sysv/sysv4/getpgid.c b/sysdeps/unix/sysv/sysv4/getpgid.c index c957bf933ba..309e2f11e4c 100644 --- a/sysdeps/unix/sysv/sysv4/getpgid.c +++ b/sysdeps/unix/sysv/sysv4/getpgid.c @@ -27,7 +27,7 @@ extern int __pgrpsys __P ((int type, ...)); int DEFUN(__getpgid, (pid), pid_t pid) { - return __pgrpsys (0, pid); + return __pgrpsys (4, pid); } weak_alias (__getpgid, getpgid)