about summary refs log tree commit diff
path: root/src/thread/pthread_once.c
Commit message (Collapse)AuthorAgeFilesLines
* fix deadlock race in pthread_onceRich Felker2014-04-161-2/+1
| | | | | | | | | | | | | | at the end of successful pthread_once, there was a race window during which another thread calling pthread_once would momentarily change the state back from 2 (finished) to 1 (in-progress). in this case, the status was immediately changed back, but with no wake call, meaning that waiters which arrived during this short window could block forever. there are two possible fixes. one would be adding the wake to the code path where it was missing. but it's better just to avoid reverting the status at all, by using compare-and-swap instead of swap. (cherry picked from commit 0d0c2f40344640a2a6942dda156509593f51db5d)
* fix major breakage in pthread_once (it was always deadlocking)Rich Felker2011-03-081-8/+7
| | | | | | the issue was a break statement that was breaking only from the switch, not the enclosing for loop, and a failure to set the final success state.
* initial check-in, version 0.5.0 v0.5.0Rich Felker2011-02-121-0/+38