mirror of
https://github.com/fluencelabs/musl
synced 2025-06-08 20:41:35 +00:00
9 lines
134 B
C
9 lines
134 B
C
#include "pthread_impl.h"
|
|
|
|
int pthread_cond_broadcast(pthread_cond_t *c)
|
|
{
|
|
c->__block = 0;
|
|
__wake(&c->__block, -1, 0);
|
|
return 0;
|
|
}
|