pthread_cond_init.c 138 B

1234567
  1. #include "pthread_impl.h"
  2. int pthread_cond_init(pthread_cond_t *c, const pthread_condattr_t *a)
  3. {
  4. memset(c, 0, sizeof *c);
  5. return 0;
  6. }