From f90a679a54d8d39883a1dca6b5c7a7adfc5d6ad8 Mon Sep 17 00:00:00 2001
From: Peter S. Mazinger <ps.m@gmx.net>
Date: Sat, 23 Apr 2011 21:08:35 +0200
Subject: [PATCH 346/396] waitpid.c: be more specific in comment about the use of wait4 syscall

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
---
 libc/sysdeps/linux/common/waitpid.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libc/sysdeps/linux/common/waitpid.c b/libc/sysdeps/linux/common/waitpid.c
index b5a9b18..2309d5b 100644
--- a/libc/sysdeps/linux/common/waitpid.c
+++ b/libc/sysdeps/linux/common/waitpid.c
@@ -11,7 +11,7 @@
 
 pid_t __NC(waitpid)(pid_t pid, int *wait_stat, int options)
 {
-#if 1 /* kernel says to avoid waitpid syscall */
+#if 1 /* kernel/exit.c says to avoid waitpid syscall */
 	return __wait4_nocancel(pid, wait_stat, options, NULL);
 #else
 	return INLINE_SYSCALL(waitpid, 3, pid, wait_stat, options);
-- 
1.7.0.4

