about summary refs log tree commit diff
path: root/nptl/tst-sem11.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix semaphore destruction (bug 12674).Carlos O'Donell2015-01-211-1/+8
| | | | | | | | | | | | | This commit fixes semaphore destruction by either using 64b atomic operations (where available), or by using two separate fields when only 32b atomic operations are available. In the latter case, we keep a conservative estimate of whether there are any waiting threads in one bit of the field that counts the number of available tokens, thus allowing sem_post to atomically both add a token and determine whether it needs to call futex_wake. See: https://sourceware.org/ml/libc-alpha/2014-12/msg00155.html
* Fix aliasing problem in tst-sem11.Ulrich Drepper2009-10-301-8/+10
|
* Test of semaphores.Ulrich Drepper2007-05-261-0/+76