OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:thrd_t
(Results
1 - 4
of
4
) sorted by null
/external/mesa3d/include/c11/
threads_posix.h
66
typedef pthread_t
thrd_t
;
typedef
288
thrd_create(
thrd_t
*thr, thrd_start_t func, void *arg)
304
static inline
thrd_t
312
thrd_detach(
thrd_t
thr)
319
thrd_equal(
thrd_t
thr0,
thrd_t
thr1)
333
thrd_join(
thrd_t
thr, int *res)
threads_win32.h
104
typedef HANDLE
thrd_t
;
typedef
478
thrd_create(
thrd_t
*thr, thrd_start_t func, void *arg)
493
*thr = (
thrd_t
)handle;
499
static inline
thrd_t
510
* - define
thrd_t
as a thread Ids, but this would mean we'd need to OpenThread for many operations
511
* - use malloc'ed memory for
thrd_t
. This would imply using TLS for current thread.
536
thrd_detach(
thrd_t
thr)
544
thrd_equal(
thrd_t
thr0,
thrd_t
thr1)
559
thrd_join(
thrd_t
thr, int *res
[
all
...]
/external/mesa3d/src/mapi/
u_current.c
151
typedef
thrd_t
thread_id;
/external/mesa3d/src/gallium/auxiliary/os/
os_thread.h
52
typedef
thrd_t
pipe_thread;
Completed in 688 milliseconds