note that, while the attributes are stored, they are not used in pthread_cond_init yet.
8 lines
117 B
C
8 lines
117 B
C
#include "pthread_impl.h"
|
|
|
|
int pthread_condattr_init(pthread_condattr_t *a)
|
|
{
|
|
memset(a, 0, sizeof *a);
|
|
return 0;
|
|
}
|