1 #include "pthread_impl.h"
4 int thrd_create(thrd_t
*thr
, thrd_start_t func
, void *arg
)
6 int ret
= __pthread_create(thr
, __ATTRP_C11_THREAD
, (void *(*)(void *))func
, arg
);
8 case 0: return thrd_success
;
9 case EAGAIN
: return thrd_nomem
;
10 default: return thrd_error
;