Home
last modified time | relevance | path

Searched refs:thread1 (Results 1 – 16 of 16) sorted by relevance

/kernel/liteos_a/testsuites/unittest/extended/signal/full/
Dsignal_test_038.cpp48 pthread_t thread1; in TestCase() local
49 ret = pthread_create(&thread1, NULL, ThreadKillTest, 0); in TestCase()
54 ret = pthread_kill(thread1, INVAILD_SIG); in TestCase()
61 pthread_join(thread1, NULL); in TestCase()
Dsignal_test_016.cpp87 pthread_t thread, thread1, thread2; in TestMultiPthreadKillPendNormal() local
91 retValue = pthread_create(&thread1, NULL, ThreadSetDfl, 0); in TestMultiPthreadKillPendNormal()
105 pthread_join(thread1, NULL); in TestMultiPthreadKillPendNormal()
Dsignal_test_017.cpp103 pthread_t thread, thread1, thread2; in TestMultiPthreadFatherProcessExit() local
120 retValue = pthread_create(&thread1, NULL, ThreadSetDfl, 0); in TestMultiPthreadFatherProcessExit()
/kernel/liteos_a/testsuites/unittest/libc/posix/pthread/full/
DIt_posix_pthread_085.cpp58 pthread_t thread1; in Testcase() local
68 rc = pthread_create(&thread1, NULL, pthread_f01, NULL); in Testcase()
88 rc = pthread_join(thread1, NULL); in Testcase()
DIt_posix_pthread_087.cpp67 pthread_t thread1; in Testcase() local
78 rc = pthread_create(&thread1, NULL, pthread_f01, NULL); in Testcase()
93 rc = pthread_join(thread1, &thRet); in Testcase()
/kernel/liteos_a/testsuites/unittest/libc/posix/mqueue/full/
DIt_posix_queue_079.cpp89 pthread_t thread1; in Testcase() local
101 ret = pthread_create(&thread1, NULL, PthreadF02, NULL); in Testcase()
121 ret = pthread_join(thread1, NULL); in Testcase()
134 pthread_join(thread1, NULL); in Testcase()
DIt_posix_queue_076.cpp56 pthread_t thread1; in PthreadF02() local
79 ret = pthread_create(&thread1, &attr1, PthreadF01, NULL); in PthreadF02()
89 ret = pthread_join(thread1, NULL); in PthreadF02()
106 PosixPthreadDestroy(&attr1, thread1); in PthreadF02()
DIt_posix_queue_078.cpp54 pthread_t thread1; in Testcase() local
95 ret = pthread_create(&thread1, &attr1, PthreadF01, NULL); in Testcase()
98 ret = pthread_join(thread1, NULL); in Testcase()
/kernel/liteos_a/testsuites/kernel/sample/posix/pthread/full/
DIt_posix_pthread_085.c65 pthread_t thread1; in Testcase() local
75 rc = pthread_create(&thread1, NULL, PthreadF01, NULL); in Testcase()
95 rc = pthread_join(thread1, NULL); in Testcase()
DIt_posix_pthread_087.c71 pthread_t thread1; in Testcase() local
82 rc = pthread_create(&thread1, NULL, PthreadF01, NULL); in Testcase()
97 rc = pthread_join(thread1, &thRet); in Testcase()
/kernel/liteos_a/testsuites/unittest/extended/signal/smoke/
Dsignal_test_013.cpp104 pthread_t thread, thread1, thread2; in TestSigMultiPthread() local
109 ret = pthread_create(&thread1, NULL, ThreadSetDfl, 0); in TestSigMultiPthread()
126 pthread_join(thread1, reinterpret_cast<void **>(&status1)); in TestSigMultiPthread()
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/benchmarks/
Dcontext_switch.c166 void *(*thread1)(void *); member
215 .thread1 = pipe_thread1,
254 .thread1 = yield_thread1,
384 .thread1 = futex_thread1,
501 start_fn(actions->thread1, NULL, cpu1); in main()
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/cpu/
Dcpu-topology.txt198 thread1 {
207 thread1 {
218 thread1 {
227 thread1 {
240 thread1 {
248 thread1 {
259 thread1 {
267 thread1 {
/kernel/liteos_a/compat/posix/src/
Dpthread.c758 int pthread_equal(pthread_t thread1, pthread_t thread2) in pthread_equal() argument
760 return thread1 == thread2; in pthread_equal()
/kernel/liteos_m/kal/posix/src/
Dpthread.c297 int pthread_equal(pthread_t thread1, pthread_t thread2) in pthread_equal() argument
299 return (int)(thread1 == thread2); in pthread_equal()
/kernel/linux/linux-5.10/Documentation/RCU/Design/Requirements/
DRequirements.rst98 11 void thread1(void)
107 ``x`` must complete before ``thread1()`` stores to ``y``, so that
715 11 void thread1(void)
725 After ``thread0()`` and ``thread1()`` execute concurrently, it is quite
770 13 void thread1(void)
779 ``thread1()`` function's update, the ``WARN_ON()`` could never fire. But
781 aside from subsequent grace periods, of which ``thread1()`` has none, so
830 9 void thread1(void)
873 9 void thread1(void)
896 before the end of ``thread1()``'s grace period. If in addition
[all …]