summaryrefslogtreecommitdiffstats
path: root/lldb/source/Host/android
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2016-02-23 12:26:08 +0000
committerPavel Labath <labath@google.com>2016-02-23 12:26:08 +0000
commit7326c01aaad294075a81f752e924cb38a63b8fae (patch)
tree240316cd22db4f7c39e2b4cb72f2361528867ed7 /lldb/source/Host/android
parenta97aaa9a4bc290c1ec076c4070ebaf69cb0c6609 (diff)
downloadbcm5719-llvm-7326c01aaad294075a81f752e924cb38a63b8fae.tar.gz
bcm5719-llvm-7326c01aaad294075a81f752e924cb38a63b8fae.zip
[linux] Remove all traces of signalfd(2)
Summary: Signalfd is not used in the code anymore, and given that the same functionality can be achieved with the new MainLoop class, it's unlikely we will need it in the future. Remove all traces of it. Reviewers: tberghammer, ovyalov Subscribers: tberghammer, danalbert, srhines, lldb-commits Differential Revision: http://reviews.llvm.org/D17510 llvm-svn: 261631
Diffstat (limited to 'lldb/source/Host/android')
-rw-r--r--lldb/source/Host/android/LibcGlue.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/lldb/source/Host/android/LibcGlue.cpp b/lldb/source/Host/android/LibcGlue.cpp
index 3842fb6c2a8..091c11d1553 100644
--- a/lldb/source/Host/android/LibcGlue.cpp
+++ b/lldb/source/Host/android/LibcGlue.cpp
@@ -27,11 +27,6 @@ time_t timegm(struct tm* t)
return (time_t) timegm64(t);
}
-int signalfd (int fd, const sigset_t *mask, int flags)
-{
- return syscall(__NR_signalfd4, fd, mask, _NSIG / 8, flags);
-}
-
int posix_openpt(int flags)
{
return open("/dev/ptmx", flags);
OpenPOWER on IntegriCloud