| /Zephyr-latest/tests/posix/common/src/ | 
| D | key.c | 87 		zassert_ok(pthread_create(&newthread[i], NULL, thread_top, NULL),  in ZTEST() 106 	zassert_ok(pthread_create(&newthread, NULL, thread_func, NULL),  in ZTEST() 171 	zassert_ok(pthread_create(&thread, NULL, setspecific_thread, &alloc_count_t0),  in ZTEST() 176 	zassert_ok(pthread_create(&thread, NULL, setspecific_thread, &alloc_count_t1),  in ZTEST()
  | 
| D | pthread.c | 285 		ret = pthread_create(&newthread[i], NULL, thread_top_exec, INT_TO_POINTER(i));  in ZTEST() 360 		zassert_ok(pthread_create(&newthread[i], NULL, thread_top_term, INT_TO_POINTER(i)));  in ZTEST() 389 	zassert_ok(pthread_create(&th, NULL, timedjoin_thread, INT_TO_POINTER(sleep_duration_ms)));  in ZTEST() 430 	zassert_ok(pthread_create(&th, NULL, timedjoin_thread, INT_TO_POINTER(sleep_duration_ms)));  in ZTEST() 457 		zassert_ok(pthread_create(&pthread1, NULL, create_thread1, NULL),  in ZTEST() 546 	zassert_ok(pthread_create(&th, NULL, test_pthread_cleanup_entry, NULL));  in ZTEST() 584 	zassert_ok(pthread_create(&th, NULL, test_pthread_cancel_fn, NULL));  in ZTEST() 612 	zassert_ok(pthread_create(&th, NULL, test_pthread_setschedprio_fn, NULL));  in ZTEST()
  | 
| D | mutex.c | 79 	zassert_ok(pthread_create(&th, NULL, entry, NULL));  in test_mutex_common() 201 	zassert_ok(pthread_create(&th, NULL, test_mutex_timedlock_fn, &mutex));  in ZTEST() 208 	zassert_ok(pthread_create(&th, NULL, test_mutex_timedlock_fn, &mutex));  in ZTEST()
  | 
| D | pthread_attr.c | 46 		zassert_ok(pthread_create(&th, attrp, entry, arg));  in create_thread_common_entry() 48 		zassert_not_ok(pthread_create(&th, attrp, entry, arg));  in create_thread_common_entry()
  | 
| /Zephyr-latest/lib/posix/options/ | 
| D | Kconfig.barrier | 26 	bool "Use a POSIX barrier to serialize pthread_create()" 30 	  pthread_create() and zephyr_thread_wrapper() when spawning and joining
  | 
| D | timer.c | 172 		ret = pthread_create(&timer->thread, evp->sigev_notify_attributes,  in timer_create()
  | 
| D | Kconfig.profile | 9 	select POSIX_BASE_DEFINITIONS # clock_gettime(), pthread_create(), sem_get(), etc
  | 
| D | mqueue.c | 471 			ret = pthread_create(&th,  in send_message()
  | 
| D | Kconfig.pthread | 56 	  on calls to pthread_create() there is no need to worry about resource
  | 
| /Zephyr-latest/tests/posix/semaphores/src/ | 
| D | main.c | 49 	ret = pthread_create(&thread1, NULL, child_func, sem);  in semaphore_test() 82 	zassert_equal(pthread_create(&thread2, NULL, child_func, sem), 0, "Thread creation failed");  in semaphore_test() 287 	zassert_ok(pthread_create(&thread1, NULL, nsem_open_func, "sem1"));  in ZTEST() 288 	zassert_ok(pthread_create(&thread2, NULL, nsem_close_func, different_sem1));  in ZTEST()
  | 
| /Zephyr-latest/samples/posix/env/src/ | 
| D | main.c | 68 	return pthread_create(&th, NULL, entry, NULL);  in main()
  | 
| /Zephyr-latest/lib/libc/common/source/thrd/ | 
| D | thrd.c | 25 	switch (pthread_create(thr, NULL, pfunc, arg)) {  in thrd_create()
  | 
| /Zephyr-latest/tests/posix/xsi_threads_ext/src/ | 
| D | main.c | 48 		zassert_ok(pthread_create(&th, attrp, entry, arg));  in create_thread_common_entry() 50 		zassert_not_ok(pthread_create(&th, attrp, entry, arg));  in create_thread_common_entry()
  | 
| /Zephyr-latest/scripts/native_simulator/common/src/ | 
| D | nce.c | 209 	NSI_SAFE_CALL(pthread_create(&sw_thread, NULL, sw_wrapper, this_arg));  in nce_boot_cpu()
  | 
| D | nct.c | 476 	NSI_SAFE_CALL(pthread_create(&tt_el->thread,  in nct_new_thread()
  | 
| /Zephyr-latest/tests/posix/rwlocks/src/ | 
| D | main.c | 75 		zassert_ok(pthread_create(&newthread[i], NULL, thread_top, NULL),  in ZTEST()
  | 
| /Zephyr-latest/tests/posix/headers/src/ | 
| D | pthread_h.c | 101 	zassert_not_null(pthread_create);  in ZTEST()
  | 
| /Zephyr-latest/tests/modules/thrift/ThriftTest/src/ | 
| D | main.cpp | 143 	rv = pthread_create(&context.server_thread, attrp, server_func, nullptr);  in thrift_test_before()
  | 
| /Zephyr-latest/arch/posix/include/ | 
| D | posix_cheats.h | 146 #define pthread_create(...)		zap_pthread_create(__VA_ARGS__)  macro
  | 
| /Zephyr-latest/samples/posix/philosophers/src/ | 
| D | main.c | 220 		ret = pthread_create(&threads[i], NULL, philosopher, INT_TO_POINTER(i));  in start_threads()
  | 
| /Zephyr-latest/tests/benchmarks/posix/threads/src/ | 
| D | main.c | 177 	return pthread_create(&pthreads[i], &pthread_attrs[i], pthread_fun, INT_TO_POINTER(i));  in pthread_create_wrapper()
  | 
| /Zephyr-latest/samples/net/sockets/socketpair/src/ | 
| D | main.c | 134 		res = pthread_create(&ctx[i].thread, attrp, fun, &ctx[i]);  in setup()
  | 
| /Zephyr-latest/tests/posix/signals/src/ | 
| D | main.c | 304 	zassert_ok(pthread_create(&th, NULL, test_sigmask_entry, pthread_sigmask));  in ZTEST() 318 		zassert_ok(pthread_create(&th, NULL, test_sigmask_entry, sigprocmask));  in ZTEST()
  | 
| /Zephyr-latest/include/zephyr/posix/ | 
| D | pthread.h | 437 int pthread_create(pthread_t *newthread, const pthread_attr_t *attr,
  | 
| /Zephyr-latest/tests/posix/xsi_realtime/src/ | 
| D | mqueue.c | 81 		zassert_ok(pthread_create(&newthread[i], NULL,  in ZTEST()
  |