summaryrefslogtreecommitdiffstats
path: root/lib/librthread/rthread_barrier.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update my email address.pirofti2020-04-061-2/+2
|
* Return EINVAL if pthread_barrier_init is called with count=0.pirofti2018-07-061-1/+4
| | | | OK kettenis@, guenther@
* make pthread_barrier_wait behave more like it does on other platforms.tedu2016-04-151-6/+17
| | | | from Kari Tristan Helgason
* Honor subsystem style.pirofti2012-04-231-48/+35
| | | | | | `Visual inspection looks ok' kurt@. >From Brad
* Add pthread barrier support.pirofti2012-04-111-0/+145
Implementation and documentation for: - pthread_barrier_init() - pthread_barrier_destroy() - pthread_barrier_wait() - pthread_barrierattr_init() - pthread_barrierattr_destroy() - pthread_barrierattr_getpshared() - pthread_barrierattr_setpshared() Currently only private barriers are supported. Okay guenther@.