Home
last modified time | relevance | path

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

/bionic/libc/include/bits/
Dthreads_inlines.h135 __BIONIC_THREADS_INLINE int thrd_create(thrd_t* __thrd, in thrd_create() argument
143 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() argument
155 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() argument
169 if (pthread_join(__thrd, &__pthread_result) != 0) return thrd_error; in thrd_join()
/bionic/libc/include/
Dthreads.h158 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);