From 11952073af22568bba0b661f7a9d4402c443a888 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Thu, 24 Oct 2013 15:15:14 -0700 Subject: Remove dependencies on obsolete __ARCH_WANT_SYSCALL_DEPRECATED system calls. (aarch64 kernels don't have these system calls.) Change-Id: I6f64075aa412f71520f2df71c3d69b647f91c1ca --- libc/bionic/wait.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/bionic/wait.cpp') diff --git a/libc/bionic/wait.cpp b/libc/bionic/wait.cpp index 7dbcec2..27453bb 100644 --- a/libc/bionic/wait.cpp +++ b/libc/bionic/wait.cpp @@ -44,7 +44,7 @@ pid_t waitpid(pid_t pid, int* status, int options) { } int waitid(idtype_t which, id_t id, siginfo_t* info, int options) { - /* the system call takes an option struct rusage that we don't need */ + // The system call takes an optional struct rusage that we don't need. return __waitid(which, id, info, options, NULL); } -- cgit v1.1