Home
last modified time | relevance | path

Searched refs:__thrd (Results 1 – 2 of 2) sorted by relevance

/bionic/libc/include/bits/
Dthreads_inlines.h137 __BIONIC_THREADS_INLINE int thrd_create(thrd_t* __thrd, in thrd_create() argument
145 int __result = __bionic_thrd_error(pthread_create(__thrd, NULL, in thrd_create()
156 __BIONIC_THREADS_INLINE int thrd_detach(thrd_t __thrd) { in thrd_detach() argument
157 return __bionic_thrd_error(pthread_detach(__thrd)); in thrd_detach()
169 __BIONIC_THREADS_INLINE int thrd_join(thrd_t __thrd, int* __result) { in thrd_join() argument
171 if (pthread_join(__thrd, &__pthread_result) != 0) return thrd_error; in thrd_join()
/bionic/libc/include/
Dthreads.h158 int thrd_create(thrd_t* __thrd, thrd_start_t __function, void* __arg) __INTRODUCED_IN(30);
168 int thrd_detach(thrd_t __thrd) __INTRODUCED_IN(30);
184 int thrd_join(thrd_t __thrd, int* __result) __INTRODUCED_IN(30);