diff options
author | Elliott Hughes <enh@google.com> | 2013-10-24 15:15:14 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2013-10-24 15:48:32 -0700 |
commit | 11952073af22568bba0b661f7a9d4402c443a888 (patch) | |
tree | c4ae77a40e8e309219cd4ab993a39d92f3d13e50 /libc/bionic/wait.cpp | |
parent | cdac5f73aca015287d1f40ff50d4fbf293a0c549 (diff) | |
download | bionic-11952073af22568bba0b661f7a9d4402c443a888.zip bionic-11952073af22568bba0b661f7a9d4402c443a888.tar.gz bionic-11952073af22568bba0b661f7a9d4402c443a888.tar.bz2 |
Remove dependencies on obsolete __ARCH_WANT_SYSCALL_DEPRECATED system calls.
(aarch64 kernels don't have these system calls.)
Change-Id: I6f64075aa412f71520f2df71c3d69b647f91c1ca
Diffstat (limited to 'libc/bionic/wait.cpp')
-rw-r--r-- | libc/bionic/wait.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |