mirror of
https://github.com/fluencelabs/musl
synced 2025-06-12 06:21:39 +00:00
implement pthread_condattr_* interfaces
note that, while the attributes are stored, they are not used in pthread_cond_init yet.
This commit is contained in:
7
src/thread/pthread_condattr_init.c
Normal file
7
src/thread/pthread_condattr_init.c
Normal file
@ -0,0 +1,7 @@
|
||||
#include "pthread_impl.h"
|
||||
|
||||
int pthread_condattr_init(pthread_condattr_t *a)
|
||||
{
|
||||
memset(a, 0, sizeof *a);
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user