Searched refs:td (Results 1 - 10 of 10) sorted by relevance

/seL4-test-master/projects/musllibc/src/time/
H A Dtimer_delete.c8 pthread_t td = (void *)((uintptr_t)t << 1); local
9 a_store(&td->timer_id, td->timer_id | INT_MIN);
10 __wake(&td->timer_id, 1, 1);
H A Dtimer_getoverrun.c8 pthread_t td = (void *)((uintptr_t)t << 1); local
9 t = (void *)(uintptr_t)(td->timer_id & INT_MAX);
H A Dtimer_gettime.c8 pthread_t td = (void *)((uintptr_t)t << 1); local
9 t = (void *)(uintptr_t)(td->timer_id & INT_MAX);
H A Dtimer_settime.c8 pthread_t td = (void *)((uintptr_t)t << 1); local
9 t = (void *)(uintptr_t)(td->timer_id & INT_MAX);
H A Dtimer_create.c84 pthread_t td; local
117 r = pthread_create(&td, &attr, start, &args);
127 ksev.sigev_tid = td->tid;
130 td->timer_id = timerid;
133 *res = (void *)(INTPTR_MIN | (uintptr_t)td>>1);
/seL4-test-master/projects/musllibc/src/sched/
H A Daffinity.c12 int pthread_setaffinity_np(pthread_t td, size_t size, const cpu_set_t *set) argument
14 return -__syscall(SYS_sched_setaffinity, td->tid, size, set);
30 int pthread_getaffinity_np(pthread_t td, size_t size, cpu_set_t *set) argument
32 return -do_getaffinity(td->tid, size, set);
/seL4-test-master/projects/musllibc/src/env/
H A D__init_tls.c13 pthread_t td = p; local
14 td->self = td;
18 td->tid = __syscall(SYS_set_tid_address, &td->tid);
19 td->locale = &libc.global_locale;
20 td->robust_list.head = &td->robust_list.head;
61 pthread_t td; local
70 td
[all...]
/seL4-test-master/projects/musllibc/src/mq/
H A Dmq_notify.c36 pthread_t td; local
53 if (pthread_create(&td, &attr, start, &args)) {
67 pthread_cancel(td);
/seL4-test-master/projects/musllibc/src/aio/
H A Dlio_listio.c118 pthread_t td; local
133 if (pthread_create(&td, &a, wait_thread, st)) {
H A Daio.c52 pthread_t td; member in struct:aio_thread
211 at.td = __pthread_self();
265 pthread_t td; local
283 if (pthread_create(&td, &a, io_thread_func, &args)) {
355 pthread_cancel(p->td);

Completed in 388 milliseconds