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_suspend.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_suspend.c')
-rw-r--r-- | sysdeps/pthread/aio_suspend.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sysdeps/pthread/aio_suspend.c b/sysdeps/pthread/aio_suspend.c index c739285c6a..529b0d75ad 100644 --- a/sysdeps/pthread/aio_suspend.c +++ b/sysdeps/pthread/aio_suspend.c @@ -145,9 +145,6 @@ aio_suspend (const struct aiocb *const list[], int nent, waitlist[cnt].next = requestlist[cnt]->waiting; waitlist[cnt].counterp = &cntr; waitlist[cnt].sigevp = NULL; -#ifdef BROKEN_THREAD_SIGNALS - waitlist[cnt].caller_pid = 0; /* Not needed. */ -#endif requestlist[cnt]->waiting = &waitlist[cnt]; any = true; } |