Searched refs:__thrd (Results 1 – 2 of 2) sorted by relevance
135 __BIONIC_THREADS_INLINE int thrd_create(thrd_t* __thrd, in thrd_create() argument143 int __result = __bionic_thrd_error(pthread_create(__thrd, NULL, in thrd_create()154 __BIONIC_THREADS_INLINE int thrd_detach(thrd_t __thrd) { in thrd_detach() argument155 return __bionic_thrd_error(pthread_detach(__thrd)); in thrd_detach()167 __BIONIC_THREADS_INLINE int thrd_join(thrd_t __thrd, int* __result) { in thrd_join() argument169 if (pthread_join(__thrd, &__pthread_result) != 0) return thrd_error; in thrd_join()
158 int thrd_create(thrd_t* _Nonnull __thrd, thrd_start_t _Nonnull __function, void* _Nullable __arg) _…168 int thrd_detach(thrd_t __thrd) __INTRODUCED_IN(30);184 int thrd_join(thrd_t __thrd, int* _Nullable __result) __INTRODUCED_IN(30);