Home
last modified time | relevance | path

Searched refs:pthread (Results 1 - 25 of 407) sorted by relevance

12345678910>>...17

/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/tm/
H A DMakefile21 $(OUTPUT)/tm-tmspr: CFLAGS += -pthread
22 $(OUTPUT)/tm-vmx-unavail: CFLAGS += -pthread -m64
24 $(OUTPUT)/tm-unavailable: CFLAGS += -O0 -pthread -m64 -Wno-error=uninitialized -mvsx
25 $(OUTPUT)/tm-trap: CFLAGS += -O0 -pthread -m64
26 $(OUTPUT)/tm-signal-context-force-tm: CFLAGS += -pthread -m64
27 $(OUTPUT)/tm-signal-pagefault: CFLAGS += -pthread -m64
H A Dtm-vmx-unavail.c17 #include <pthread.h>
20 #include <pthread.h>
/kernel/linux/linux-6.6/tools/testing/selftests/powerpc/tm/
H A DMakefile21 $(OUTPUT)/tm-tmspr: CFLAGS += -pthread
22 $(OUTPUT)/tm-vmx-unavail: CFLAGS += -pthread -m64
24 $(OUTPUT)/tm-unavailable: CFLAGS += -O0 -pthread -m64 -Wno-error=uninitialized -mvsx
25 $(OUTPUT)/tm-trap: CFLAGS += -O0 -pthread -m64
26 $(OUTPUT)/tm-signal-context-force-tm: CFLAGS += -pthread -m64
27 $(OUTPUT)/tm-signal-pagefault: CFLAGS += -pthread -m64
/kernel/liteos_a/testsuites/kernel/sample/posix/
H A DMakefile10 -I $(LITEOSTESTTOPDIR)/kernel/sample/posix/pthread
12 SRC_MODULES := mqueue mutex sem pthread swtmr sched mem
15 LLT_MODULES := mqueue/llt mutex/llt sem/llt pthread/llt swtmr/llt sched/llt mem/llt
19 SMOKE_MODULES := mqueue/smoke mutex/smoke sem/smoke pthread/smoke swtmr/smoke sched/smoke mem/smoke
23 FULL_MODULES := mqueue/full mutex/full sem/full pthread/full swtmr/full sched/full mem/full
27 PRESSURE_MODULES := mqueue/pressure mutex/pressure sem/pressure pthread/pressure swtmr/pressure sched/pressure mem/pressure
/kernel/liteos_a/testsuites/unittest/process/basic/process/full/
H A Dprocess_test_041.cpp48 pthread_t pthread[1000] = { 0 }; in GroupProcess() local
55 param.sched_priority = 31; // 31, set pthread priority. in GroupProcess()
58 ret = pthread_create(&pthread[i], &a, Thread, NULL); in GroupProcess()
68 pthread_create(&pthread[100], &a, Thread, NULL); // 100, pthread array subscript in GroupProcess()
69 pthread_create(&pthread[100], &a, Thread, NULL); // 100, pthread array subscript in GroupProcess()
70 pthread_create(&pthread[100], &a, Thread, NULL); // 100, pthread array subscript in GroupProcess()
/kernel/liteos_a/testsuites/unittest/process/basic/pthread/full/
H A Dpthread_test_004.cpp40 pthread_t pthread = pthread_self(); in ThreadFunc8() local
43 ret = pthread_detach(pthread); in ThreadFunc8()
58 pthread_t pthread = pthread_self(); in ThreadFunc7() local
65 ret = pthread_detach(pthread); in ThreadFunc7()
130 pthread_t pthread = pthread_self(); in ThreadFunc6() local
135 return (void *)(uintptr_t)pthread; in ThreadFunc6()
143 pthread_t pthread = pthread_self(); in ThreadFunc4() local
162 if (i == 10) { // 10, in loop 10, cancel pthread. in ThreadFunc4()
163 ret = pthread_cancel(pthread); in ThreadFunc4()
174 pthread_t pthread in ThreadFunc3() local
[all...]
H A Dpthread_test_001.cpp54 pthread_t pthread = pthread_self(); in ThreadFunc4() local
70 if (i == 10) { // 10, in loop 10, cancel pthread. in ThreadFunc4()
71 ret = pthread_cancel(pthread); in ThreadFunc4()
82 pthread_t pthread = pthread_self(); in ThreadFunc3() local
97 if (i == 10) { // 10, in loop 10, cancel pthread. in ThreadFunc3()
98 ret = pthread_cancel(pthread); in ThreadFunc3()
110 pthread_t pthread = pthread_self(); in ThreadFunc2() local
/kernel/linux/linux-5.10/tools/perf/bench/
H A Dsched-pipe.c28 #include <pthread.h>
34 pthread_t pthread; member
121 ret = pthread_create(&td->pthread, NULL, worker_thread, td); in bench_sched_pipe()
128 ret = pthread_join(td->pthread, NULL); in bench_sched_pipe()
/kernel/linux/linux-6.6/tools/perf/bench/
H A Dsched-pipe.c28 #include <pthread.h>
34 pthread_t pthread; member
121 ret = pthread_create(&td->pthread, NULL, worker_thread, td); in bench_sched_pipe()
128 ret = pthread_join(td->pthread, NULL); in bench_sched_pipe()
/kernel/liteos_a/testsuites/unittest/process/basic/pthread/smoke/
H A Dpthread_test_003.cpp45 pthread_t pthread = pthread_self(); in ThreadFuncTest2() local
49 ret = pthread_getschedparam(pthread, &policy, &param); in ThreadFuncTest2()
65 pthread_t pthread = pthread_self(); in ThreadFuncTest3() local
69 ret = pthread_getschedparam(pthread, &policy, &param); in ThreadFuncTest3()
H A Dpthread_test_011.cpp39 pthread_t pthread = pthread_self(); in child1() local
42 int ret = pthread_getschedparam(pthread, &policy, &param); in child1()
47 ret = pthread_getschedparam(pthread, &newPolicy, &param); in child1()
/kernel/linux/linux-6.6/tools/mm/
H A DMakefile11 CFLAGS += -Wall -Wextra -I../lib/ -pthread
12 LDFLAGS += $(LIBS) -pthread
/kernel/linux/linux-6.6/tools/testing/selftests/arm64/mte/
H A DMakefile4 CFLAGS += -std=gnu99 -I. -pthread
5 LDFLAGS += -pthread
/kernel/linux/linux-5.10/tools/testing/selftests/sync/
H A DMakefile2 CFLAGS += -O2 -g -std=gnu89 -pthread -Wall -Wextra
4 LDFLAGS += -pthread
/kernel/linux/linux-6.6/tools/testing/selftests/sync/
H A DMakefile2 CFLAGS += -O2 -g -std=gnu89 -pthread -Wall -Wextra
4 LDFLAGS += -pthread
/kernel/linux/linux-5.10/tools/virtio/
H A DMakefile8 CFLAGS += -pthread
9 LDFLAGS += -pthread
/kernel/liteos_a/testsuites/unittest/container/full/
H A DIt_pid_container_019.cpp65 pthread_t pthread[TEST_COUNT] = {0}; in ChildFun() local
67 pthread_create(&pthread[count], NULL, PthreadFunc, NULL); in ChildFun()
/kernel/linux/linux-5.10/include/acpi/platform/
H A Daclinux.h193 #define ACPI_CAST_PTHREAD_T(pthread) ((acpi_thread_id) (pthread))
/kernel/linux/linux-6.6/include/acpi/platform/
H A Daclinux.h202 #define ACPI_CAST_PTHREAD_T(pthread) ((acpi_thread_id) (pthread))
/kernel/linux/linux-6.6/tools/virtio/
H A DMakefile19 CFLAGS += -pthread
20 LDFLAGS += -pthread
/kernel/linux/linux-5.10/tools/testing/selftests/ptrace/
H A DMakefile2 CFLAGS += -std=c99 -pthread -iquote../../../../include/uapi -Wall
/kernel/linux/linux-5.10/tools/build/feature/
H A Dtest-pthread-barrier.c3 #include <pthread.h>
/kernel/linux/linux-6.6/tools/testing/selftests/mount_setattr/
H A DMakefile3 CFLAGS = -g $(KHDR_INCLUDES) -Wall -O2 -pthread
/kernel/linux/linux-6.6/tools/testing/selftests/filesystems/binderfs/
H A DMakefile3 CFLAGS += $(KHDR_INCLUDES) -pthread
/kernel/linux/linux-6.6/tools/testing/selftests/pidfd/
H A DMakefile2 CFLAGS += -g $(KHDR_INCLUDES) -pthread -Wall

Completed in 8 milliseconds

12345678910>>...17