Searched refs:thd (Results 1 - 13 of 13) sorted by relevance

/freebsd-11-stable/contrib/apr/threadproc/unix/
H A Dthread.c202 APR_DECLARE(apr_status_t) apr_thread_exit(apr_thread_t *thd,
205 thd->exitval = retval;
206 apr_pool_destroy(thd->pool);
212 apr_thread_t *thd)
217 if ((stat = pthread_join(*thd->td,(void *)&thread_stat)) == 0) {
218 *retval = thd->exitval;
230 APR_DECLARE(apr_status_t) apr_thread_detach(apr_thread_t *thd)
235 if ((stat = pthread_detach(thd->td)) == 0) {
237 if ((stat = pthread_detach(*thd->td)) == 0) {
280 apr_thread_t *thd)
[all...]
/freebsd-11-stable/contrib/apr-util/test/
H A Dtestqueue.c34 static void * APR_THREAD_FUNC consumer(apr_thread_t *thd, void *data) argument
63 static void * APR_THREAD_FUNC producer(apr_thread_t *thd, void *data) argument
H A Dtestpass.c86 static void * APR_THREAD_FUNC testing_thread(apr_thread_t *thd, argument
H A Dtestreslist.c104 static void * APR_THREAD_FUNC resource_consuming_thread(apr_thread_t *thd, argument
/freebsd-11-stable/contrib/apr-util/include/
H A Dapr_thread_pool.h285 * @param thd The thread is executing a task
289 APU_DECLARE(apr_status_t) apr_thread_pool_task_owner_get(apr_thread_t *thd,
/freebsd-11-stable/contrib/apr/include/
H A Dapr_thread_proc.h274 * @param thd The thread to stop
277 APR_DECLARE(apr_status_t) apr_thread_exit(apr_thread_t *thd,
283 * @param thd The thread to join
286 apr_thread_t *thd);
316 * @param thd The thread to detach
318 APR_DECLARE(apr_status_t) apr_thread_detach(apr_thread_t *thd); variable
H A Dapr_portable.h303 * @param thd The os specific thread we are converting to
306 apr_thread_t *thd);
318 * @param thd The apr thread we are converting to.
322 APR_DECLARE(apr_status_t) apr_os_thread_put(apr_thread_t **thd,
/freebsd-11-stable/sbin/fdisk_pc98/
H A Dfdisk.c467 int tsec,tcyl,thd; local
469 thd = partp->dp_shd;
472 Decimal("beginning head", thd, tmp);
476 partp->dp_shd = thd;
482 thd = partp->dp_ehd;
485 Decimal("ending head", thd, tmp);
489 partp->dp_ehd = thd;
/freebsd-11-stable/contrib/apr-util/misc/
H A Dapr_thread_pool.c48 apr_thread_t *thd; member in struct:apr_thread_list_elt
224 elt->thd = t;
485 apr_thread_t *thd; local
516 rv = apr_thread_create(&thd, NULL, thread_pool_func, me, me->pool);
534 apr_thread_t *thd; local
569 rv = apr_thread_create(&thd, NULL, thread_pool_func, me, me->pool);
674 apr_os_thread_get(&os_thread, elt->thd);
844 apr_thread_join(&rv, elt->thd);
932 APU_DECLARE(apr_status_t) apr_thread_pool_task_owner_get(apr_thread_t *thd,
939 rv = apr_thread_data_get(&data, "apr_thread_pool_task", thd);
[all...]
/freebsd-11-stable/sbin/fdisk/
H A Dfdisk.c581 int tsec,tcyl,thd; local
583 thd = partp->dp_shd;
586 Decimal("beginning head", thd, tmp, NO_TRACK_HEADS);
590 partp->dp_shd = thd;
593 thd = partp->dp_ehd;
596 Decimal("ending head", thd, tmp, NO_TRACK_HEADS);
600 partp->dp_ehd = thd;
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A DMakefile.in351 /*) thd=${target_header_dir};; \
352 *) thd=${includedir}/${target_header_dir};; \
354 ${mkinstalldirs} $(DESTDIR)$${thd}; \
356 ${INSTALL_DATA} $$h $(DESTDIR)$${thd}; \
/freebsd-11-stable/contrib/binutils/libiberty/
H A DMakefile.in368 /*) thd=${target_header_dir};; \
369 *) thd=${includedir}/${target_header_dir};; \
371 ${mkinstalldirs} $(DESTDIR)$${thd}; \
373 ${INSTALL_DATA} $$h $(DESTDIR)$${thd}; \
/freebsd-11-stable/contrib/apr/
H A Dconfigure19902 pthread_t thd;
19907 return pthread_create(&thd, NULL, thread_routine, &data);
19992 pthread_t thd;
19997 return pthread_create(&thd, NULL, thread_routine, &data);
20150 pthread_t thd;
20155 return pthread_create(&thd, NULL, thread_routine, &data);
20240 pthread_t thd;
20245 return pthread_create(&thd, NULL, thread_routine, &data);

Completed in 153 milliseconds