Home
last modified time | relevance | path

Searched refs:tid (Results 1 - 25 of 420) sorted by relevance

12345678910>>...17

/third_party/musl/libc-test/src/functionalext/thread/
H A Dpthread_rwlock_rdlock.c48 pthread_t tid[2]; in pthread_rwlock_clockrdlock_0010() local
51 TEST(pthread_create(&tid[0], NULL, PthreadClockRdlockNoOutRealTimeW1, NULL) == 0); in pthread_rwlock_clockrdlock_0010()
52 TEST(pthread_create(&tid[1], NULL, PthreadClockRdlockNoOutRealTimeR2, NULL) == 0); in pthread_rwlock_clockrdlock_0010()
54 TEST(pthread_join(tid[0], NULL) == 0); in pthread_rwlock_clockrdlock_0010()
55 TEST(pthread_join(tid[1], NULL) == 0); in pthread_rwlock_clockrdlock_0010()
92 pthread_t tid[2]; in pthread_rwlock_clockrdlock_0020() local
95 TEST(pthread_create(&tid[0], NULL, PthreadClockRdlockOutRealTimeW1, NULL) == 0); in pthread_rwlock_clockrdlock_0020()
96 TEST(pthread_create(&tid[1], NULL, PthreadClockRdlockOutRealTimeR2, NULL) == 0); in pthread_rwlock_clockrdlock_0020()
98 TEST(pthread_join(tid[0], NULL) == 0); in pthread_rwlock_clockrdlock_0020()
99 TEST(pthread_join(tid[ in pthread_rwlock_clockrdlock_0020()
133 pthread_t tid[2]; pthread_rwlock_clockrdlock_0030() local
177 pthread_t tid[2]; pthread_rwlock_clockrdlock_0040() local
217 pthread_t tid[2]; pthread_rwlock_timedrdlock_monotonic_np_0010() local
261 pthread_t tid[2]; pthread_rwlock_timedrdlock_monotonic_np_0020() local
[all...]
H A Dpthread_rwlock_wrlock.c253 pthread_t tid[2]; in pthread_rwlock_timedwrlock_0050() local
256 EXPECT_EQ(pthread_create(&tid[0], NULL, RwlockClockRealTimeWait1, NULL), 0); in pthread_rwlock_timedwrlock_0050()
257 EXPECT_EQ(pthread_create(&tid[1], NULL, RwlockClockRealTimeWait2, NULL), 0); in pthread_rwlock_timedwrlock_0050()
259 EXPECT_EQ(pthread_join(tid[0], NULL), 0); in pthread_rwlock_timedwrlock_0050()
260 EXPECT_EQ(pthread_join(tid[1], NULL), 0); in pthread_rwlock_timedwrlock_0050()
271 pthread_t tid[2]; in pthread_rwlock_timedwrlock_0060() local
274 EXPECT_EQ(pthread_create(&tid[0], NULL, RwlockClockRealTimeOut1, NULL), 0); in pthread_rwlock_timedwrlock_0060()
275 EXPECT_EQ(pthread_create(&tid[1], NULL, RwlockClockRealTimeOut2, NULL), 0); in pthread_rwlock_timedwrlock_0060()
277 EXPECT_EQ(pthread_join(tid[0], NULL), 0); in pthread_rwlock_timedwrlock_0060()
278 EXPECT_EQ(pthread_join(tid[ in pthread_rwlock_timedwrlock_0060()
289 pthread_t tid[2]; pthread_rwlock_timedwrlock_0070() local
307 pthread_t tid[2]; pthread_rwlock_timedwrlock_0080() local
325 pthread_t tid[2]; pthread_rwlock_timedwrlock_0090() local
343 pthread_t tid[2]; pthread_rwlock_timedwrlock_0100() local
[all...]
H A Dpthread_mutex_ext.c45 pthread_t tid; in pthread_mutex_clocklock_0010() local
46 TEST(pthread_create(&tid, NULL, PthreadClocklockOutRealTime, (void*)&mtx) == 0); in pthread_mutex_clocklock_0010()
53 TEST(pthread_join(tid, NULL) == 0); in pthread_mutex_clocklock_0010()
77 pthread_t tid; in pthread_mutex_clocklock_0020() local
78 TEST(pthread_create(&tid, NULL, PthreadClocklockNoOutRealTime, (void*)&mtx) == 0); in pthread_mutex_clocklock_0020()
84 TEST(pthread_join(tid, NULL) == 0); in pthread_mutex_clocklock_0020()
113 pthread_t tid; in pthread_mutex_clocklock_0030() local
114 TEST(pthread_create(&tid, NULL, PthreadClocklockOutMonoTime, (void*)&mtx) == 0); in pthread_mutex_clocklock_0030()
121 TEST(pthread_join(tid, NULL) == 0); in pthread_mutex_clocklock_0030()
145 pthread_t tid; in pthread_mutex_clocklock_0040() local
185 pthread_t tid; pthread_mutex_clocklock_0050() local
217 pthread_t tid; pthread_mutex_clocklock_0060() local
260 pthread_t tid; pthread_mutex_timedlock_monotonic_np_0010() local
292 pthread_t tid; pthread_mutex_timedlock_monotonic_np_0020() local
343 pthread_t tid; pthread_mutex_lock_timeout_np_0010() local
376 pthread_t tid; pthread_mutex_lock_timeout_np_0020() local
[all...]
/third_party/alsa-lib/src/timer/
H A Dtimer_query.c215 * \param tid timer identification
218 * if tid->dev_class is -1, then the first device is returned
219 * if result tid->dev_class is -1, no more devices are left
221 int snd_timer_query_next_device(snd_timer_query_t *timer, snd_timer_id_t *tid) in snd_timer_query_next_device() argument
224 assert(tid); in snd_timer_query_next_device()
225 return timer->ops->next_device(timer, tid); in snd_timer_query_next_device()
281 * \param tid pointer to #snd_timer_id_t structure
284 int snd_timer_ginfo_set_tid(snd_timer_ginfo_t *obj, snd_timer_id_t *tid) in snd_timer_ginfo_set_tid() argument
286 obj->tid = *((snd_timer_id_t *)tid); in snd_timer_ginfo_set_tid()
489 snd_timer_id_set_class(snd_timer_id_t * tid, int dev_class) snd_timer_id_set_class() argument
500 snd_timer_id_get_class(snd_timer_id_t * tid) snd_timer_id_get_class() argument
511 snd_timer_id_set_sclass(snd_timer_id_t * tid, int dev_sclass) snd_timer_id_set_sclass() argument
522 snd_timer_id_get_sclass(snd_timer_id_t * tid) snd_timer_id_get_sclass() argument
533 snd_timer_id_set_card(snd_timer_id_t * tid, int card) snd_timer_id_set_card() argument
544 snd_timer_id_get_card(snd_timer_id_t * tid) snd_timer_id_get_card() argument
555 snd_timer_id_set_device(snd_timer_id_t * tid, int device) snd_timer_id_set_device() argument
566 snd_timer_id_get_device(snd_timer_id_t * tid) snd_timer_id_get_device() argument
577 snd_timer_id_set_subdevice(snd_timer_id_t * tid, int subdevice) snd_timer_id_set_subdevice() argument
588 snd_timer_id_get_subdevice(snd_timer_id_t * tid) snd_timer_id_get_subdevice() argument
[all...]
/third_party/musl/src/malloc/liteos_a/user_debug/
H A Dmemory_check.c65 static inline void lock_stat_bin(int tid) in lock_stat_bin() argument
67 lock(mem_stat.bins[tid].lock); in lock_stat_bin()
68 if (!mem_stat.bins[tid].head.next) in lock_stat_bin()
69 mem_stat.bins[tid].head.next = mem_stat.bins[tid].head.prev = &mem_stat.bins[tid].head; in lock_stat_bin()
72 static inline void unlock_stat_bin(int tid) in unlock_stat_bin() argument
74 unlock(mem_stat.bins[tid].lock); in unlock_stat_bin()
88 static int try_delete_node(int tid, void *ptr) in try_delete_node() argument
93 lock_stat_bin(tid); in try_delete_node()
113 int tid = ((struct pthread *)pthread_self())->tid; delete_node() local
179 create_node(int tid, void *ptr, size_t size) create_node() argument
203 int tid = ((struct pthread *)pthread_self())->tid; insert_node() local
355 check_mem_integrity(int tid, void *ptr) check_mem_integrity() argument
396 int tid = ((struct pthread *)pthread_self())->tid; get_integrity_info() local
506 int tid = ((struct pthread *)pthread_self())->tid; get_free_trace() local
546 int tid, ret; watch_mem() local
686 int tid, nptr; check_leak() local
[all...]
/third_party/musl/porting/liteos_a/user_debug/src/malloc/
H A Dmemory_check.c50 static inline void lock_stat_bin(int tid) in lock_stat_bin() argument
52 lock(mem_stat.bins[tid].lock); in lock_stat_bin()
53 if (!mem_stat.bins[tid].head.next) in lock_stat_bin()
54 mem_stat.bins[tid].head.next = mem_stat.bins[tid].head.prev = &mem_stat.bins[tid].head; in lock_stat_bin()
57 static inline void unlock_stat_bin(int tid) in unlock_stat_bin() argument
59 unlock(mem_stat.bins[tid].lock); in unlock_stat_bin()
73 static int try_delete_node(int tid, void *ptr) in try_delete_node() argument
78 lock_stat_bin(tid); in try_delete_node()
98 int tid = ((struct pthread *)pthread_self())->tid; delete_node() local
164 create_node(int tid, void *ptr, size_t size) create_node() argument
188 int tid = ((struct pthread *)pthread_self())->tid; insert_node() local
340 check_mem_integrity(int tid, void *ptr) check_mem_integrity() argument
381 int tid = ((struct pthread *)pthread_self())->tid; get_integrity_info() local
491 int tid = ((struct pthread *)pthread_self())->tid; get_free_trace() local
531 int tid, ret; watch_mem() local
671 int tid, nptr; check_leak() local
[all...]
/third_party/ltp/testcases/realtime/func/prio-preempt/
H A Dprio-preempt.c138 int policy, mypri = 0, tid; in busy_thread() local
139 tid = (intptr_t) (((struct thread *)arg)->arg); in busy_thread()
149 printf("Busy Thread %d(%d): Running...\n", tid, mypri); in busy_thread()
157 printf("Busy Thread %d(%d): Exiting\n", tid, mypri); in busy_thread()
164 int policy, rc, mypri = 0, tid, times = 0; in worker_thread() local
165 tid = (intptr_t) (((struct thread *)arg)->arg); in worker_thread()
179 rc = pthread_mutex_lock(&mutex[tid]); in worker_thread()
180 if (tid == 0) in worker_thread()
182 rc = pthread_cond_wait(&cond[tid], &mutex[tid]); in worker_thread()
[all...]
/third_party/musl/src/sched/
H A Daffinity.c7 int sched_setaffinity(pid_t tid, size_t size, const cpu_set_t *set) in sched_setaffinity() argument
14 return syscall(SYS_sched_setaffinity, tid, (unsigned short)(set->__bits[0]), MUSL_TYPE_PROCESS); in sched_setaffinity()
16 return syscall(SYS_sched_setaffinity, tid, size, set); in sched_setaffinity()
26 return -__syscall(SYS_sched_setaffinity, td->tid, (unsigned short)(set->__bits[0]), MUSL_TYPE_THREAD); in pthread_setaffinity_np()
28 return -__syscall(SYS_sched_setaffinity, td->tid, size, set); in pthread_setaffinity_np()
33 static int do_getaffinity(pid_t tid, size_t size, cpu_set_t *set, int flag) in do_getaffinity() argument
39 int ret = __syscall(SYS_sched_getaffinity, tid, &cpuset, flag); in do_getaffinity()
47 static int do_getaffinity(pid_t tid, size_t size, cpu_set_t *set) in do_getaffinity() argument
49 long ret = __syscall(SYS_sched_getaffinity, tid, size, set); in do_getaffinity()
56 int sched_getaffinity(pid_t tid, size_ argument
[all...]
/third_party/elfutils/libdwfl/
H A Dlinux-pid-attach.c75 __libdwfl_ptrace_attach (pid_t tid, bool *tid_was_stoppedp) in __libdwfl_ptrace_attach() argument
77 if (ptrace (PTRACE_ATTACH, tid, NULL, NULL) != 0) in __libdwfl_ptrace_attach()
82 *tid_was_stoppedp = linux_proc_pid_is_stopped (tid); in __libdwfl_ptrace_attach()
91 syscall (__NR_tkill, tid, SIGSTOP); in __libdwfl_ptrace_attach()
92 ptrace (PTRACE_CONT, tid, NULL, NULL); in __libdwfl_ptrace_attach()
97 if (waitpid (tid, &status, __WALL) != tid || !WIFSTOPPED (status)) in __libdwfl_ptrace_attach()
100 ptrace (PTRACE_DETACH, tid, NULL, NULL); in __libdwfl_ptrace_attach()
107 if (ptrace (PTRACE_CONT, tid, NULL, in __libdwfl_ptrace_attach()
111 ptrace (PTRACE_DETACH, tid, NUL in __libdwfl_ptrace_attach()
196 pid_t tid = pid_arg->tid_attached; pid_memory_read() local
281 pid_t tid = tidl; pid_next_thread() local
293 pid_getthread(Dwfl *dwfl __attribute__ ((unused)), pid_t tid, void *dwfl_arg, void **thread_argp) pid_getthread() argument
328 pid_t tid = INTUSE(dwfl_thread_tid) (thread); pid_set_initial_registers() local
352 __libdwfl_ptrace_detach(pid_t tid, bool tid_was_stopped) __libdwfl_ptrace_detach() argument
367 pid_t tid = INTUSE(dwfl_thread_tid) (thread); pid_thread_detach() local
[all...]
/third_party/ltp/testcases/realtime/func/pi-tests/
H A Dtestpi-2.c86 int i, tid = gettid(); in func_lowrt() local
88 printf("Thread %d started running with priority %d\n", tid, in func_lowrt()
92 tid, pthr->policy, pthr->priority); in func_lowrt()
104 tid, i, pthr->policy, pthr->priority); in func_lowrt()
116 int i, tid = gettid(); in func_rt() local
118 printf("Thread %d started running with prio %d\n", tid, pthr->priority); in func_rt()
122 tid, pthr->policy, pthr->priority); in func_rt()
132 tid, i, pthr->policy, pthr->priority); in func_rt()
144 int i, tid = gettid(); in func_noise() local
146 printf("Noise Thread %d started running with prio %d\n", tid, in func_noise()
[all...]
H A Dtestpi-1.c84 int i, tid = gettid(); in func_nonrt() local
86 printf("Thread %d started running with priority %d\n", tid, in func_nonrt()
90 tid, pthr->policy, pthr->priority); in func_nonrt()
102 tid, i, pthr->policy, pthr->priority); in func_nonrt()
114 int i, tid = gettid(); in func_rt() local
116 printf("Thread %d started running with prio %d\n", tid, pthr->priority); in func_rt()
120 tid, pthr->policy, pthr->priority); in func_rt()
130 tid, i, pthr->policy, pthr->priority); in func_rt()
142 int i, tid = gettid(); in func_noise() local
144 printf("Noise Thread %d started running with prio %d\n", tid, in func_noise()
[all...]
H A Dtestpi-4.c85 int i, tid = gettid(); in func_nonrt() local
87 printf("Thread %d started running with priority %d\n", tid, in func_nonrt()
91 tid, pthr->policy, pthr->priority); in func_nonrt()
104 tid, i, pthr->policy, pthr->priority); in func_nonrt()
116 int i, tid = gettid(); in func_rt() local
118 printf("Thread %d started running with prio %d\n", tid, pthr->priority); in func_rt()
122 tid, pthr->policy, pthr->priority); in func_rt()
132 tid, i, pthr->policy, pthr->priority); in func_rt()
144 int i, tid = gettid(); in func_noise() local
160 "pri %d\n", tid, in func_noise()
[all...]
/third_party/musl/porting/liteos_a/user/src/sched/
H A Daffinity.c7 int sched_setaffinity(pid_t tid, size_t size, const cpu_set_t *set) in sched_setaffinity() argument
13 return syscall(SYS_sched_setaffinity, tid, (unsigned short)(set->__bits[0]), MUSL_TYPE_PROCESS); in sched_setaffinity()
21 return -__syscall(SYS_sched_setaffinity, td->tid, (unsigned short)(set->__bits[0]), MUSL_TYPE_THREAD); in pthread_setaffinity_np()
24 static int do_getaffinity(pid_t tid, size_t size, cpu_set_t *set, int flag) in do_getaffinity() argument
30 int ret = __syscall(SYS_sched_getaffinity, tid, &cpuset, flag); in do_getaffinity()
38 int sched_getaffinity(pid_t tid, size_t size, cpu_set_t *set) in sched_getaffinity() argument
40 return __syscall_ret(do_getaffinity(tid, size, set, MUSL_TYPE_PROCESS)); in sched_getaffinity()
45 return -do_getaffinity(td->tid, size, set, MUSL_TYPE_THREAD); in pthread_getaffinity_np()
/third_party/ltp/testcases/kernel/syscalls/rt_tgsigqueueinfo/
H A Drt_tgsigqueueinfo01.c12 * ID, and tid, a thread in that thread group.
83 pid_t *tid = arg; in receiver_func() local
85 *tid = syscall(__NR_gettid); in receiver_func()
106 pid_t tid = -1; in verify_signal_parent_thread() local
110 SAFE_PTHREAD_CREATE(&pt, NULL, receiver_func, &tid); in verify_signal_parent_thread()
119 tid, SIGUSR1, &uinfo)); in verify_signal_parent_thread()
128 pid_t *tid = arg; in sender_func() local
136 *tid, SIGUSR1, &uinfo)); in sender_func()
145 pid_t tid = -1; in verify_signal_inter_thread() local
148 SAFE_PTHREAD_CREATE(&pt1, NULL, receiver_func, &tid); in verify_signal_inter_thread()
[all...]
/third_party/ltp/testcases/kernel/syscalls/ipc/msgstress/
H A Dmsgstress04.c60 static int tid; variable
71 static void cleanup_msgqueue(int i, int tid);
136 tid = -1; in main()
238 static void cleanup_msgqueue(int i, int tid) in cleanup_msgqueue() argument
255 if (msgctl(tid, IPC_RMID, 0) < 0) { in cleanup_msgqueue()
272 tid = id; in dotest()
281 cleanup_msgqueue(i, tid); in dotest()
287 exit(doreader(key, tid, getpid(), in dotest()
299 cleanup_msgqueue(i, tid); in dotest()
305 exit(dowriter(key, tid, rkidarra in dotest()
[all...]
H A Dmsgstress02.c57 static int tid; variable
66 static void cleanup_msgqueue(int i, int tid);
131 tid = -1; in main()
212 static void cleanup_msgqueue(int i, int tid) in cleanup_msgqueue() argument
229 if (msgctl(tid, IPC_RMID, 0) < 0) { in cleanup_msgqueue()
245 tid = id; in dotest()
255 cleanup_msgqueue(i, tid); in dotest()
261 exit(doreader(key, tid, getpid(), in dotest()
274 cleanup_msgqueue(i, tid); in dotest()
280 exit(dowriter(key, tid, rkidarra in dotest()
[all...]
/third_party/musl/porting/liteos_m/user/src/thread/
H A Dpthread_join.c8 unsigned int tid; in __pthread_timedjoin_np() local
17 r = __syscall(SYS_pthread_join, t->tid); in __pthread_timedjoin_np()
31 tid = t->tid; in __pthread_timedjoin_np()
32 t->tid = 0; in __pthread_timedjoin_np()
33 return __syscall(SYS_pthread_deatch, tid); in __pthread_timedjoin_np()
/third_party/ltp/testcases/realtime/stress/pi-tests/
H A Dtestpi-3.c101 int rc, i, j, policy, tid = gettid(); in func_nonrt() local
109 printf("Thread %d: Can't set affinity: %d %s\n", tid, rc, in func_nonrt()
128 sched_getparam(tid, &schedp); in func_nonrt()
129 policy = sched_getscheduler(tid); in func_nonrt()
131 "pri %d\n", tid, pthr->priority, i, in func_nonrt()
150 int rc, i, j, policy, tid = gettid(); in func_rt() local
158 printf("Thread %d: Can't set affinity: %d %s\n", tid, rc, in func_rt()
183 sched_getparam(tid, &schedp); in func_rt()
184 policy = sched_getscheduler(tid); in func_rt()
187 tid, pth in func_rt()
206 int rc, i, j, policy, tid = gettid(); func_noise() local
[all...]
/third_party/musl/src/linux/
H A Dgettid.c11 pid_t tid = __pthread_self()->tid; in gettid() local
12 if (tid == ZERO || tid == NEGATIVE_ONE) { in gettid()
15 return tid; in gettid()
/third_party/musl/porting/linux/user/src/linux/
H A Dclone.c37 self->tid = __syscall(SYS_gettid); in __start_child()
38 self->pid = self->tid; in __start_child()
70 pid_t caller_tid = self->tid; in clone()
73 self->tid = -1; in clone()
95 self->tid = caller_tid; in clone()
96 } else if (self->tid == -1) { in clone()
97 self->tid = __syscall(SYS_gettid); in clone()
98 self->pid = self->tid; in clone()
/third_party/musl/src/linux/linux/
H A Dclone.c52 self->tid = __syscall(SYS_gettid); in __start_child()
53 self->pid = self->tid; in __start_child()
85 pid_t caller_tid = self->tid; in clone()
88 self->tid = -1; in clone()
110 self->tid = caller_tid; in clone()
111 } else if (self->tid == -1) { in clone()
112 self->tid = __syscall(SYS_gettid); in clone()
113 self->pid = self->tid; in clone()
/third_party/ltp/testcases/realtime/func/thread_clock/
H A Dtc-2.c92 int tid = (int)(long)pthr->arg; in workerthread() local
93 struct timespec *ts = &workts[tid]; in workerthread()
96 printf("Worker thread %d working\n", tid); in workerthread()
106 tid, ts->tv_sec, ts->tv_nsec); in workerthread()
114 int tid = (int)(long)pthr->arg; in sleeperthread() local
115 struct timespec *ts = &sleepts[tid]; in sleeperthread()
118 printf("Sleeper thread %d sleeping\n", tid); in sleeperthread()
129 tid, ts->tv_sec, ts->tv_nsec); in sleeperthread()
/third_party/musl/porting/liteos_a/user/src/thread/
H A Dpthread_join.c13 unsigned int tid; in __pthread_timedjoin_np() local
25 r = __syscall(SYS_pthread_join, t->tid); in __pthread_timedjoin_np()
41 tid = t->tid; in __pthread_timedjoin_np()
42 t->tid = 0; in __pthread_timedjoin_np()
43 return __syscall(SYS_pthread_deatch, tid); in __pthread_timedjoin_np()
/third_party/libuv/src/win/
H A Dthread.c114 int uv_thread_create(uv_thread_t *tid, void (*entry)(void *arg), void *arg) { in uv_thread_create() argument
117 return uv_thread_create_ex(tid, &params, entry, arg); in uv_thread_create()
120 int uv_thread_create_ex(uv_thread_t* tid, in uv_thread_create_ex() argument
164 *tid = thread; in uv_thread_create_ex()
183 int uv_thread_setaffinity(uv_thread_t* tid, in uv_thread_setaffinity() argument
214 oldthreadmask = SetThreadAffinityMask(*tid, threadmask); in uv_thread_setaffinity()
226 int uv_thread_getaffinity(uv_thread_t* tid, in uv_thread_getaffinity() argument
245 threadmask = SetThreadAffinityMask(*tid, procmask); in uv_thread_getaffinity()
246 if (threadmask == 0 || SetThreadAffinityMask(*tid, threadmask) == 0) in uv_thread_getaffinity()
277 int uv_thread_join(uv_thread_t *tid) { in uv_thread_join() argument
[all...]
/third_party/musl/src/stdio/
H A D__lockfile.c6 int owner = f->lock, tid = __pthread_self()->tid; in __lockfile() local
7 if ((owner & ~MAYBE_WAITERS) == tid) in __lockfile()
9 owner = a_cas(&f->lock, 0, tid); in __lockfile()
11 while ((owner = a_cas(&f->lock, 0, tid|MAYBE_WAITERS))) { in __lockfile()

Completed in 11 milliseconds

12345678910>>...17