diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-15 17:28:37 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-15 17:54:19 +0200 |
commit | bbf5c4388acdd83fe651c82c6af5e1958202101f (patch) | |
tree | 26f91b104fb548e0f48775983bb59f87ef004993 /sysdeps/pthread/aio_misc.c | |
parent | 6014c65de2ac75ac4ef147754d80c7992f07ece8 (diff) | |
download | glibc-bbf5c4388acdd83fe651c82c6af5e1958202101f.tar.gz glibc-bbf5c4388acdd83fe651c82c6af5e1958202101f.tar.xz glibc-bbf5c4388acdd83fe651c82c6af5e1958202101f.zip |
aio: Remove support for BROKEN_THREAD_SIGNALS
This was originally added to support LinuxThreads and is not needed for NPTL.
Diffstat (limited to 'sysdeps/pthread/aio_misc.c')
-rw-r--r-- | sysdeps/pthread/aio_misc.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sysdeps/pthread/aio_misc.c b/sysdeps/pthread/aio_misc.c index 98fdc66e80..511a0977a6 100644 --- a/sysdeps/pthread/aio_misc.c +++ b/sysdeps/pthread/aio_misc.c @@ -350,10 +350,6 @@ __aio_enqueue_request (aiocb_union *aiocbp, int operation) return NULL; } newp->aiocbp = aiocbp; -#ifdef BROKEN_THREAD_SIGNALS - newp->caller_pid = (aiocbp->aiocb.aio_sigevent.sigev_notify == SIGEV_SIGNAL - ? getpid () : 0); -#endif newp->waiting = NULL; aiocbp->aiocb.__abs_prio = prio; |