summaryrefslogtreecommitdiff
path: root/nptl/tst-sem11.c
AgeCommit message (Collapse)Author
2015-01-21Fix semaphore destruction (bug 12674).Carlos O'Donell
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
2009-10-30Fix aliasing problem in tst-sem11.Ulrich Drepper
2007-05-26Test of semaphores.Ulrich Drepper