Home | History | Annotate | Download | only in c11

Lines Matching refs:thrd_t

118 typedef HANDLE thrd_t;
492 thrd_create(thrd_t *thr, thrd_start_t func, void *arg)
507 *thr = (thrd_t)handle;
513 static inline thrd_t
528 * - define thrd_t as a thread Ids, but this would mean we'd need to OpenThread for many operations
529 * - use malloc'ed memory for thrd_t. This would imply using TLS for current thread.
554 thrd_detach(thrd_t thr)
562 thrd_equal(thrd_t thr0, thrd_t thr1)
577 thrd_join(thrd_t thr, int *res)