shithub: npe

ref: 9d296cecac21b9c62dd0e7a24df592a96503a645
dir: /libnpe_pthread/pthread_cond_init.c/

View raw version
#include "_pthread.h"

int
pthread_cond_init(pthread_cond_t *const cond, const void *const attr)
{
	USED(attr);
    memset(cond, 0, sizeof(*cond));
    cond->l = &cond->lock;

    return 0;
}