/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/tm/ |
H A D | Makefile | 21 $(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 D | tm-vmx-unavail.c | 17 #include <pthread.h> 20 #include <pthread.h>
|
/kernel/linux/linux-6.6/tools/testing/selftests/powerpc/tm/ |
H A D | Makefile | 21 $(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 D | Makefile | 10 -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 D | process_test_041.cpp | 48 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 D | pthread_test_004.cpp | 40 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 D | pthread_test_001.cpp | 54 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 D | sched-pipe.c | 28 #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 D | sched-pipe.c | 28 #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 D | pthread_test_003.cpp | 45 pthread_t pthread = pthread_self(); in ThreadFuncTest2() local 49 ret = pthread_getschedparam(pthread, &policy, ¶m); in ThreadFuncTest2() 65 pthread_t pthread = pthread_self(); in ThreadFuncTest3() local 69 ret = pthread_getschedparam(pthread, &policy, ¶m); in ThreadFuncTest3()
|
H A D | pthread_test_011.cpp | 39 pthread_t pthread = pthread_self(); in child1() local 42 int ret = pthread_getschedparam(pthread, &policy, ¶m); in child1() 47 ret = pthread_getschedparam(pthread, &newPolicy, ¶m); in child1()
|
/kernel/linux/linux-6.6/tools/mm/ |
H A D | Makefile | 11 CFLAGS += -Wall -Wextra -I../lib/ -pthread 12 LDFLAGS += $(LIBS) -pthread
|
/kernel/linux/linux-6.6/tools/testing/selftests/arm64/mte/ |
H A D | Makefile | 4 CFLAGS += -std=gnu99 -I. -pthread 5 LDFLAGS += -pthread
|
/kernel/linux/linux-5.10/tools/testing/selftests/sync/ |
H A D | Makefile | 2 CFLAGS += -O2 -g -std=gnu89 -pthread -Wall -Wextra 4 LDFLAGS += -pthread
|
/kernel/linux/linux-6.6/tools/testing/selftests/sync/ |
H A D | Makefile | 2 CFLAGS += -O2 -g -std=gnu89 -pthread -Wall -Wextra 4 LDFLAGS += -pthread
|
/kernel/linux/linux-5.10/tools/virtio/ |
H A D | Makefile | 8 CFLAGS += -pthread 9 LDFLAGS += -pthread
|
/kernel/liteos_a/testsuites/unittest/container/full/ |
H A D | It_pid_container_019.cpp | 65 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 D | aclinux.h | 193 #define ACPI_CAST_PTHREAD_T(pthread) ((acpi_thread_id) (pthread))
|
/kernel/linux/linux-6.6/include/acpi/platform/ |
H A D | aclinux.h | 202 #define ACPI_CAST_PTHREAD_T(pthread) ((acpi_thread_id) (pthread))
|
/kernel/linux/linux-6.6/tools/virtio/ |
H A D | Makefile | 19 CFLAGS += -pthread 20 LDFLAGS += -pthread
|
/kernel/linux/linux-5.10/tools/testing/selftests/ptrace/ |
H A D | Makefile | 2 CFLAGS += -std=c99 -pthread -iquote../../../../include/uapi -Wall
|
/kernel/linux/linux-5.10/tools/build/feature/ |
H A D | test-pthread-barrier.c | 3 #include <pthread.h>
|
/kernel/linux/linux-6.6/tools/testing/selftests/mount_setattr/ |
H A D | Makefile | 3 CFLAGS = -g $(KHDR_INCLUDES) -Wall -O2 -pthread
|
/kernel/linux/linux-6.6/tools/testing/selftests/filesystems/binderfs/ |
H A D | Makefile | 3 CFLAGS += $(KHDR_INCLUDES) -pthread
|
/kernel/linux/linux-6.6/tools/testing/selftests/pidfd/ |
H A D | Makefile | 2 CFLAGS += -g $(KHDR_INCLUDES) -pthread -Wall
|