瀏覽代碼

wait4 is pid_t, not int

Peter S. Mazinger 20 年之前
父節點
當前提交
063957fd15
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      libc/sysdeps/linux/common/wait4.c

+ 2 - 2
libc/sysdeps/linux/common/wait4.c

@@ -12,9 +12,9 @@
 
 #define __NR___syscall_wait4 __NR_wait4
 static inline _syscall4(int, __syscall_wait4, __kernel_pid_t, pid,
-		int *, status, int, opts, void *, rusage);
+		int *, status, int, opts, struct rusage *, rusage);
 
-int wait4(pid_t pid, int *status, int opts, struct rusage *rusage)
+pid_t wait4(pid_t pid, int *status, int opts, struct rusage *rusage)
 {
 	return (__syscall_wait4(pid, status, opts, rusage));
 }