/src/regress/sys/kern/softint1/ |
softint1.c | 40 void *thread(void *); 45 thread(void *arg) function in typeref:typename:void * 62 pthread_create(&thr, NULL, thread, NULL);
|
softint1.c | 40 void *thread(void *); 45 thread(void *arg) function in typeref:typename:void * 62 pthread_create(&thr, NULL, thread, NULL);
|
/src/tests/lib/libpthread/dlopen/ |
t_main_pthread_create.c | 62 pthread_t thread; local in function:ATF_TC_BODY 65 ret = pthread_create(&thread, NULL, routine, arg); 80 pthread_t thread; local in function:ATF_TC_BODY 93 ret = testf_dso_pthread_create(&thread, NULL, routine, arg);
|
t_main_pthread_create.c | 62 pthread_t thread; local in function:ATF_TC_BODY 65 ret = pthread_create(&thread, NULL, routine, arg); 80 pthread_t thread; local in function:ATF_TC_BODY 93 ret = testf_dso_pthread_create(&thread, NULL, routine, arg);
|
t_dso_pthread_create.c | 64 pthread_t thread; local in function:ATF_TC_BODY 84 ret = testf_dso_pthread_create(&thread, NULL, routine, arg);
|
t_dso_pthread_create.c | 64 pthread_t thread; local in function:ATF_TC_BODY 84 ret = testf_dso_pthread_create(&thread, NULL, routine, arg);
|
/src/tests/lib/libpthread/ |
t_siglongjmp.c | 36 * its thread. 56 thread(void *arg) function in typeref:typename:void * 71 "Checks siglongjmp() out of a signal handler back into its thread"); 83 PTHREAD_REQUIRE(pthread_create(&t, NULL, thread, NULL));
|
t_sleep.c | 72 pthread_t thread; local in function:ATF_TC_BODY 84 PTHREAD_REQUIRE(pthread_create(&thread, NULL, threadfunc, NULL)); 86 /* make sure the signal is delivered to the child thread */ 96 PTHREAD_REQUIRE(pthread_join(thread, NULL));
|
t_siglongjmp.c | 36 * its thread. 56 thread(void *arg) function in typeref:typename:void * 71 "Checks siglongjmp() out of a signal handler back into its thread"); 83 PTHREAD_REQUIRE(pthread_create(&t, NULL, thread, NULL));
|
t_sleep.c | 72 pthread_t thread; local in function:ATF_TC_BODY 84 PTHREAD_REQUIRE(pthread_create(&thread, NULL, threadfunc, NULL)); 86 /* make sure the signal is delivered to the child thread */ 96 PTHREAD_REQUIRE(pthread_join(thread, NULL));
|
t_join.c | 63 pthread_t thread; local in function:ATF_TC_BODY 65 PTHREAD_REQUIRE(pthread_create(&thread, NULL, threadfunc1, NULL)); 66 PTHREAD_REQUIRE(pthread_join(thread, NULL)); 72 pthread_t thread[25]; local in function:threadfunc1 83 * Check alignment of thread stack, if supported. 90 * out, if we try to join the calling thread. 102 for (i = 0; i < __arraycount(thread); i++) { 109 rv = pthread_create(&thread[i], &attr, threadfunc2, (void *)i); 116 PTHREAD_REQUIRE(pthread_join(thread[i], &val)); 124 * Once the thread has returned, ESRCH shoul [all...] |
t_swapcontext.c | 93 pthread_t thread; local in function:ATF_TC_BODY 102 PTHREAD_REQUIRE(pthread_create(&thread, NULL, threadfunc, NULL)); 103 PTHREAD_REQUIRE(pthread_join(thread, NULL));
|
t_join.c | 63 pthread_t thread; local in function:ATF_TC_BODY 65 PTHREAD_REQUIRE(pthread_create(&thread, NULL, threadfunc1, NULL)); 66 PTHREAD_REQUIRE(pthread_join(thread, NULL)); 72 pthread_t thread[25]; local in function:threadfunc1 83 * Check alignment of thread stack, if supported. 90 * out, if we try to join the calling thread. 102 for (i = 0; i < __arraycount(thread); i++) { 109 rv = pthread_create(&thread[i], &attr, threadfunc2, (void *)i); 116 PTHREAD_REQUIRE(pthread_join(thread[i], &val)); 124 * Once the thread has returned, ESRCH shoul [all...] |
t_swapcontext.c | 93 pthread_t thread; local in function:ATF_TC_BODY 102 PTHREAD_REQUIRE(pthread_create(&thread, NULL, threadfunc, NULL)); 103 PTHREAD_REQUIRE(pthread_join(thread, NULL));
|
/src/tests/libexec/ld.elf_so/ |
h_thread_local_dtor.c | 61 pthread_t thread; local in function:main 72 if (pthread_create(&thread, NULL, thread_helper, testfunc)) 90 if (pthread_join(thread, NULL))
|
h_thread_local_dtor.c | 61 pthread_t thread; local in function:main 72 if (pthread_create(&thread, NULL, thread_helper, testfunc)) 90 if (pthread_join(thread, NULL))
|
/src/tests/rump/kernspace/ |
busypage.c | 52 thread(void *arg) function in typeref:typename:void 82 thread, NULL, &newl, "jointest"); 84 panic("thread creation failed: %d", rv); 99 panic("thread join failed: %d", rv);
|
busypage.c | 52 thread(void *arg) function in typeref:typename:void 82 thread, NULL, &newl, "jointest"); 84 panic("thread creation failed: %d", rv); 99 panic("thread join failed: %d", rv);
|
/src/lib/librumpuser/ |
rumpfiber.h | 36 struct thread { struct 41 TAILQ_ENTRY(thread) thread_list; 57 void wake(struct thread *thread); 58 void block(struct thread *thread); 59 struct thread *init_mainthread(void *); 63 struct thread* create_thread(const char *name, void *cookie, 66 int is_runnable(struct thread *); 67 void set_runnable(struct thread *); [all...] |
rumpfiber.h | 36 struct thread { struct 41 TAILQ_ENTRY(thread) thread_list; 57 void wake(struct thread *thread); 58 void block(struct thread *thread); 59 struct thread *init_mainthread(void *); 63 struct thread* create_thread(const char *name, void *cookie, 66 int is_runnable(struct thread *); 67 void set_runnable(struct thread *); [all...] |
Makefile | 37 .error Unsupported curlwp scheme for thread model: ${RUMP_CURLWP} target
|
/src/tests/lib/libc/sys/ |
t_ptrace_kill.c | 95 pthread_t thread; local in function:ATF_TC_BODY 106 SYSCALL(pthread_create(&thread, NULL, waitthread, &pid), 0);
|
t_ptrace_kill.c | 95 pthread_t thread; local in function:ATF_TC_BODY 106 SYSCALL(pthread_create(&thread, NULL, waitthread, &pid), 0);
|
/src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
msan_thread.cc | 14 MsanThread *thread = (MsanThread*)MmapOrDie(size, __func__); local in function:__msan::MsanThread::Create 15 thread->start_routine_ = start_routine; 16 thread->arg_ = arg; 17 thread->destructor_iterations_ = GetPthreadDestructorIterations(); 19 return thread; 58 // We also clear the shadow on thread destruction because 71 // start_routine_ == 0 if we're on the main thread or on one of the
|
/src/tests/lib/libc/membar/ |
t_dekker.c | 98 thread(void *cookie) function in typeref:typename:void * 138 error = pthread_create(&t[i], NULL, &thread,
|