commit | 255789e4d12d95dbb8e34cfae7fdc58514843ba5 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Sun May 25 03:14:38 2014 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Sun May 25 03:14:39 2014 +0000 |
tree | f08b347664f3c458b804e89397134f4fb6144506 | |
parent | d4f37110ce4b8439dd30540565f7c73e00cfe2fb [diff] | |
parent | 001707363ddee680d466c88dd330900683dadf63 [diff] |
Merge "Restore tkill for LP32."
diff --git a/libc/bionic/ndk_cruft.cpp b/libc/bionic/ndk_cruft.cpp index 46cc1f0..4900a8a 100644 --- a/libc/bionic/ndk_cruft.cpp +++ b/libc/bionic/ndk_cruft.cpp
@@ -222,4 +222,9 @@ return __futex(ftx, FUTEX_WAIT, value, timeout); } +// Unity's libmono uses this. +extern "C" int tkill(pid_t tid, int sig) { + return syscall(__NR_tkill, tid, sig); +} + #endif