Files
llgo/c/pthread/sync/_pthd/pthd.c

7 lines
131 B
C
Raw Normal View History

2024-06-17 12:14:24 +08:00
#include <pthread.h>
pthread_once_t llgoSyncOnceInitVal() {
pthread_once_t initVal = PTHREAD_ONCE_INIT;
return initVal;
}