OSDN Git Service

In unistd.h, getpgrp() is redirected to __getpgid(), but
authorEric Andersen <andersen@codepoet.org>
Mon, 22 Dec 2003 10:47:04 +0000 (10:47 -0000)
committerEric Andersen <andersen@codepoet.org>
Mon, 22 Dec 2003 10:47:04 +0000 (10:47 -0000)
we did not have a __getpgid().   Fix that.

libc/sysdeps/linux/common/syscalls.c

index 242864c..3c08a85 100644 (file)
@@ -1477,12 +1477,14 @@ _syscall4(int, quotactl, int, cmd, const char *, special , int, id, caddr_t, add
 //#define __NR_getpgid          132
 #ifdef L___syscall_getpgid
 #define __NR___syscall_getpgid __NR_getpgid
+#define __FAVOR_BSD
 static inline
 _syscall1(__kernel_pid_t, __syscall_getpgid, __kernel_pid_t, pid);
-pid_t getpgid(pid_t pid)
+pid_t __getpgid(pid_t pid)
 {
        return(__syscall_getpgid(pid));
 }
+weak_alias(__getpgid, getpgid);
 #endif
 
 //#define __NR_fchdir           133