Searched refs:pthread_create (Results 1 - 25 of 86) sorted by relevance

1234

/freebsd-9.3-release/contrib/bind9/
H A Dconfig.threads.in112 [printf("%x\n", pthread_create);],
119 AC_CHECK_LIB(pthread, pthread_create,,
121 AC_CHECK_LIB(c_r, pthread_create,,
122 AC_CHECK_LIB(c, pthread_create,,
127 AC_CHECK_LIB(pthread, pthread_create,,
130 AC_CHECK_LIB(c_r, pthread_create,,
131 AC_CHECK_LIB(c, pthread_create,,
/freebsd-9.3-release/tools/regression/tls/ttls2/
H A Dttls2.c32 pthread_create(&t1, 0, foo1, 0);
33 pthread_create(&t2, 0, foo2, 0);
/freebsd-9.3-release/tools/regression/tls/ttls4/
H A Dttls4.c32 pthread_create(&td, NULL, f1, NULL);
37 pthread_create(&td, NULL, f1, NULL);
/freebsd-9.3-release/tools/regression/pthread/unwind/
H A Dcatch_pthread_exit.cpp28 pthread_create(&td, NULL, thr_routine, NULL);
H A Dthread_normal_exit.cpp24 pthread_create(&td, NULL, thr_routine, NULL);
H A Dsem_wait_cancel.cpp29 pthread_create(&td, NULL, thr, NULL);
H A Dcond_wait_cancel.cpp33 pthread_create(&td, NULL, thr, NULL);
H A Dcond_wait_cancel2.cpp50 pthread_create(&td, NULL, thr, NULL);
/freebsd-9.3-release/lib/libkse/test/
H A Dhello_d.c27 error = pthread_create(&thread, NULL, entry, NULL);
29 fprintf(stderr, "Error in pthread_create(): %s\n",
H A Dhello_s.c33 error = pthread_create(&thread, NULL, entry, NULL);
36 fprintf(stderr,"Error in pthread_create(): %s\n",
H A Djoin_leak_d.c66 if ((error = pthread_create(&thread, NULL, thread_entry, NULL))
68 fprintf(stderr, "Error in pthread_create(): %s\n",
H A Dsem_d.c106 pthread_create(&threads[i], NULL, entry, (void *) &sem_a);
118 pthread_create(&threads[i], NULL, entry, (void *) &sem_a);
H A Dguard_b.c133 assert(pthread_create(&thread, &attr, recurse, &args) == 0);
144 assert(pthread_create(&thread, &attr, recurse, &args) == 0);
/freebsd-9.3-release/contrib/gcclibs/libmudflap/
H A Dmf-hooks3.c74 DECLARE(int, pthread_create, pthread_t *thr, const pthread_attr_t *attr,
273 #undef pthread_create macro
274 WRAPPER(int, pthread_create, pthread_t *thr, const pthread_attr_t *attr,
279 TRACE ("pthread_create\n");
287 return CALL_REAL (pthread_create, thr, attr, __mf_pthread_spawner, si);
/freebsd-9.3-release/tools/regression/pthread/mutex_isowned_np/
H A Dmutex_isowned_np.c66 pthread_create(&thr, NULL, thread, &mtx);
/freebsd-9.3-release/contrib/ntp/sntp/libevent/test/
H A Dregress_thread.h35 pthread_create(&(threadvar), NULL, fn, arg)
/freebsd-9.3-release/contrib/bind9/lib/isc/pthreads/
H A Dthread.c64 ret = pthread_create(thread, &attr, func, arg);
/freebsd-9.3-release/tools/regression/pthread/cv_cancel1/
H A Dcv_cancel1.c64 pthread_create(&td, NULL, thr_routine, NULL);
/freebsd-9.3-release/contrib/ntp/lib/isc/pthreads/
H A Dthread.c60 ret = pthread_create(thread, &attr, func, arg);
/freebsd-9.3-release/tools/regression/file/newfileops_on_fork/
H A Dnewfileops_on_fork.c116 if (pthread_create(&accept_thread, NULL, do_accept, NULL) != 0)
117 err(-1, "pthread_create");
/freebsd-9.3-release/tools/test/pthread_vfork/
H A Dpthread_vfork_test.c93 rc = pthread_create(&threads[t], NULL, vfork_test, &t);
95 errc(1, rc, "pthread_create");
/freebsd-9.3-release/contrib/gcc/
H A Dgthr-posix.c70 pthread_create (pthread_t *thread ATTRIBUTE_UNUSED, function
H A Dgthr-dce.h72 __gthrw(pthread_create)
107 static void *const __gthread_active_ptr = (void *) &__gthrw_(pthread_create);
164 if (!(__gthrw_(pthread_create) (&new_thread_handle, pthread_attr_default,
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DThreading.cpp96 if (::pthread_create(&Thread, &Attr, ExecuteOnThread_Dispatch, &Info) != 0)
/freebsd-9.3-release/contrib/ofed/management/opensm/complib/
H A Dcl_thread.c83 ret = pthread_create(&p_thread->osd.id, NULL,
86 if (ret != 0) /* pthread_create returns a "0" for success */

Completed in 190 milliseconds

1234