Searched refs:cond (Results 1 - 25 of 241) sorted by relevance

12345678910

/freebsd-10-stable/lib/libstdthreads/
H A Dcnd.c38 cnd_broadcast(cnd_t *cond) argument
41 if (pthread_cond_broadcast(cond) != 0)
47 cnd_destroy(cnd_t *cond) argument
50 (void)pthread_cond_destroy(cond);
54 cnd_init(cnd_t *cond) argument
57 switch (pthread_cond_init(cond, NULL)) {
68 cnd_signal(cnd_t *cond) argument
71 if (pthread_cond_signal(cond) != 0)
77 cnd_timedwait(cnd_t *restrict cond, mtx_t *restrict mtx, argument
81 switch (pthread_cond_timedwait(cond, mt
92 cnd_wait(cnd_t *cond, mtx_t *mtx) argument
[all...]
/freebsd-10-stable/lib/libc/resolv/
H A Dres_debug.h22 # define Dprint(cond, args) /*empty*/
23 # define DprintQ(cond, args, query, size) /*empty*/
27 # define Dprint(cond, args) if (cond) {fprintf args;} else {}
28 # define DprintQ(cond, args, query, size) if (cond) {\
/freebsd-10-stable/contrib/sendmail/include/sm/
H A Dassert.h66 # define SM_REQUIRE(cond) \
67 ((void) ((cond) || (sm_abort_at(__FILE__, __LINE__, \
68 "SM_REQUIRE(" #cond ") failed"), 0)))
70 # define SM_REQUIRE(cond) \
71 ((void) ((cond) || (sm_abort_at(__FILE__, __LINE__, \
72 "SM_REQUIRE(cond) failed"), 0)))
75 # define SM_REQUIRE(cond) ((void) 0)
83 # define SM_ENSURE(cond) \
84 ((void) ((cond) || (sm_abort_at(__FILE__, __LINE__, \
85 "SM_ENSURE(" #cond ") faile
[all...]
H A Dtest.h22 # define SM_TEST(cond) sm_test(cond, #cond, __FILE__, __LINE__)
24 # define SM_TEST(cond) sm_test(cond, "cond", __FILE__, __LINE__)
/freebsd-10-stable/lib/libkse/thread/
H A Dthr_cond.c54 int __pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex);
55 int __pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex,
73 _pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *cond_attr) argument
80 if (cond == NULL)
130 *cond = pcond;
139 _pthread_cond_destroy(pthread_cond_t *cond) argument
145 if (cond == NULL || *cond == NULL)
149 THR_LOCK_ACQUIRE(curthread, &(*cond)->c_lock);
155 cv = *cond;
176 _pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex) argument
359 __pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex) argument
371 _pthread_cond_timedwait(pthread_cond_t * cond, pthread_mutex_t * mutex, const struct timespec * abstime) argument
562 __pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, const struct timespec *abstime) argument
576 _pthread_cond_signal(pthread_cond_t * cond) argument
645 _pthread_cond_broadcast(pthread_cond_t * cond) argument
712 check_continuation(struct pthread *curthread, struct pthread_cond *cond, pthread_mutex_t *mutex) argument
736 pthread_cond_t cond; local
770 cond_queue_deq(pthread_cond_t cond) argument
795 cond_queue_remove(pthread_cond_t cond, struct pthread *pthread) argument
814 cond_queue_enq(pthread_cond_t cond, struct pthread *pthread) argument
[all...]
/freebsd-10-stable/contrib/apr/locks/unix/
H A Dthread_cond.c26 apr_thread_cond_t *cond = (apr_thread_cond_t *)data; local
29 rv = pthread_cond_destroy(&cond->cond);
38 APR_DECLARE(apr_status_t) apr_thread_cond_create(apr_thread_cond_t **cond,
48 if ((rv = pthread_cond_init(&new_cond->cond, NULL))) {
59 *cond = new_cond;
63 APR_DECLARE(apr_status_t) apr_thread_cond_wait(apr_thread_cond_t *cond,
68 rv = pthread_cond_wait(&cond->cond, &mutex->mutex);
77 APR_DECLARE(apr_status_t) apr_thread_cond_timedwait(apr_thread_cond_t *cond,
[all...]
/freebsd-10-stable/contrib/ntp/lib/isc/include/isc/
H A Dassertions.h85 #define ISC_REQUIRE(cond) \
86 ((void) ((cond) || \
89 #cond), 0)))
91 #define ISC_REQUIRE(cond) ((void) 0)
95 #define ISC_ENSURE(cond) \
96 ((void) ((cond) || \
99 #cond), 0)))
101 #define ISC_ENSURE(cond) ((void) 0)
105 #define ISC_INSIST(cond) \
106 ((void) ((cond) || \
[all...]
H A Derror.h57 #define ISC_ERROR_RUNTIMECHECK(cond) \
58 ((void) ((cond) || \
59 ((isc_error_runtimecheck)(__FILE__, __LINE__, #cond), 0)))
/freebsd-10-stable/contrib/ntp/sntp/libevent/
H A Devthread_win32.c130 CONDITION_VARIABLE *cond = mm_malloc(sizeof(CONDITION_VARIABLE)); local
131 if (!cond)
133 InitializeConditionVariable_fn(cond);
134 return cond;
140 CONDITION_VARIABLE *cond = cond_; local
142 mm_free(cond);
146 evthread_win32_condvar_signal(void *cond, int broadcast) argument
148 CONDITION_VARIABLE *cond = cond_; local
150 WakeAllConditionVariable_fn(cond);
152 WakeConditionVariable_fn(cond);
159 CONDITION_VARIABLE *cond = cond_; local
192 struct evthread_win32_cond *cond; local
211 struct evthread_win32_cond *cond = cond_; local
220 struct evthread_win32_cond *cond = cond_; local
235 struct evthread_win32_cond *cond = cond_; local
[all...]
H A Devthread-internal.h156 #define EVTHREAD_FREE_COND(cond) \
158 if (cond) \
159 evthread_cond_fns_.free_condition((cond)); \
161 /** Signal one thread waiting on cond */
162 #define EVTHREAD_COND_SIGNAL(cond) \
163 ( (cond) ? evthread_cond_fns_.signal_condition((cond), 0) : 0 )
164 /** Signal all threads waiting on cond */
165 #define EVTHREAD_COND_BROADCAST(cond) \
166 ( (cond)
[all...]
H A Devthread_pthread.c106 pthread_cond_t *cond = mm_malloc(sizeof(pthread_cond_t)); local
107 if (!cond)
109 if (pthread_cond_init(cond, NULL)) {
110 mm_free(cond);
113 return cond;
119 pthread_cond_t *cond = cond_; local
120 pthread_cond_destroy(cond);
121 mm_free(cond);
127 pthread_cond_t *cond = cond_; local
130 r = pthread_cond_broadcast(cond);
140 pthread_cond_t *cond = cond_; local
[all...]
/freebsd-10-stable/contrib/apr/include/
H A Dapr_thread_cond.h55 * @param cond the memory address where the newly created condition variable
59 APR_DECLARE(apr_status_t) apr_thread_cond_create(apr_thread_cond_t **cond,
69 * @param cond the condition variable on which to block.
77 APR_DECLARE(apr_status_t) apr_thread_cond_wait(apr_thread_cond_t *cond,
87 * @param cond the condition variable on which to block.
96 APR_DECLARE(apr_status_t) apr_thread_cond_timedwait(apr_thread_cond_t *cond,
105 * @param cond the condition variable on which to produce the signal.
108 APR_DECLARE(apr_status_t) apr_thread_cond_signal(apr_thread_cond_t *cond); variable
114 * @param cond the condition variable on which to produce the broadcast.
117 APR_DECLARE(apr_status_t) apr_thread_cond_broadcast(apr_thread_cond_t *cond); variable
123 APR_DECLARE(apr_status_t) apr_thread_cond_destroy(apr_thread_cond_t *cond); variable
[all...]
/freebsd-10-stable/contrib/atf/atf-c/detail/
H A Dsanity.c59 atf_sanity_inv(const char *file, int line, const char *cond) argument
61 fail("Invariant check failed at %s:%d: %s", file, line, cond);
65 atf_sanity_pre(const char *file, int line, const char *cond) argument
67 fail("Precondition check failed at %s:%d: %s", file, line, cond);
71 atf_sanity_post(const char *file, int line, const char *cond) argument
73 fail("Postcondition check failed at %s:%d: %s", file, line, cond);
/freebsd-10-stable/contrib/ntp/lib/isc/win32/
H A Dcondition.c32 isc_condition_init(isc_condition_t *cond) { argument
35 REQUIRE(cond != NULL);
37 cond->waiters = 0;
46 cond->events[LSIGNAL] = h;
52 ISC_LIST_INIT(cond->threadlist);
98 find_thread_condition(unsigned long thrd, isc_condition_t *cond, argument
108 for (threadcond = ISC_LIST_HEAD(cond->threadlist);
121 return (register_thread(thrd, cond, threadcondp));
125 isc_condition_signal(isc_condition_t *cond) { argument
131 REQUIRE(cond !
142 isc_condition_broadcast(isc_condition_t *cond) argument
171 isc_condition_destroy(isc_condition_t *cond) argument
206 wait(isc_condition_t *cond, isc_mutex_t *mutex, DWORD milliseconds) argument
235 isc_condition_wait(isc_condition_t *cond, isc_mutex_t *mutex) argument
240 isc_condition_waituntil(isc_condition_t *cond, isc_mutex_t *mutex, isc_time_t *t) argument
[all...]
/freebsd-10-stable/contrib/apr/include/arch/unix/
H A Dapr_arch_thread_cond.h37 pthread_cond_t cond; member in struct:apr_thread_cond_t
/freebsd-10-stable/contrib/gcc/
H A Dtree-ssa-loop-unswitch.c117 tree stmt, def, cond, use; local
136 cond = COND_EXPR_COND (stmt);
140 if (integer_zerop (cond) || integer_nonzerop (cond))
143 return cond;
151 simplify_using_entry_checks (struct loop *loop, tree cond) argument
161 && operand_equal_p (COND_EXPR_COND (stmt), cond, 0))
167 return cond;
171 return cond;
185 tree cond local
280 tree_unswitch_loop(struct loops *loops, struct loop *loop, basic_block unswitch_on, tree cond) argument
[all...]
/freebsd-10-stable/contrib/xz/src/common/
H A Dmythread.h116 pthread_cond_t cond; member in struct:__anon1
235 ret = pthread_cond_init(&mycond->cond, &condattr);
253 return pthread_cond_init(&mycond->cond, NULL);
257 mythread_cond_destroy(mythread_cond *cond) argument
259 int ret = pthread_cond_destroy(&cond->cond);
265 mythread_cond_signal(mythread_cond *cond) argument
267 int ret = pthread_cond_signal(&cond->cond);
273 mythread_cond_wait(mythread_cond *cond, mythread_mute argument
283 mythread_cond_timedwait(mythread_cond *cond, mythread_mutex *mutex, const mythread_condtime *condtime) argument
294 mythread_condtime_set(mythread_condtime *condtime, const mythread_cond *cond, uint32_t timeout_ms) argument
439 mythread_cond_init(mythread_cond *cond) argument
451 mythread_cond_destroy(mythread_cond *cond) argument
461 mythread_cond_signal(mythread_cond *cond) argument
471 mythread_cond_wait(mythread_cond *cond, mythread_mutex *mutex) argument
485 mythread_cond_timedwait(mythread_cond *cond, mythread_mutex *mutex, const mythread_condtime *condtime) argument
511 mythread_condtime_set(mythread_condtime *condtime, const mythread_cond *cond, uint32_t timeout) argument
[all...]
/freebsd-10-stable/lib/libc/ia64/gen/
H A Dsigsetjmp.S53 (p6) br.cond.dptk.many setjmp
54 (p7) br.cond.dpnt.many _setjmp
64 (p6) br.cond.dptk.many longjmp
65 (p7) br.cond.dpnt.many _longjmp
/freebsd-10-stable/tools/regression/capsicum/syscalls/
H A Dmisc.h47 #define CHECK(cond) do { \
48 if ((cond)) \
/freebsd-10-stable/libexec/rtld-elf/
H A Ddebug.h55 #define assert(cond) ((cond) ? (void) 0 : \
/freebsd-10-stable/sys/ofed/include/linux/
H A Dwait.h73 #define wait_event(q, cond) \
76 if (!(cond)) { \
79 if (cond) { \
89 #define wait_event_interruptible(q, cond) \
95 if (!(cond)) { \
98 if (cond) { \
/freebsd-10-stable/lib/libc/ia64/string/
H A Dbcopy.S40 (p6) br.cond.spnt.few 5f
45 (p6) br.cond.spnt.few 2f // branch if same alignment
51 (p6) br.cond.dptk.few 1b // loop
55 (p6) br.cond.sptk.few 4f
64 (p7) br.cond.spnt.few 4f // go to main copy
65 br.cond.sptk.few 3b // more bytes to copy
71 (p6) br.cond.spnt.few 1b // byte copy the end
76 (p6) br.cond.spnt.few 4b // again
91 (p6) br.cond.spnt.few 6b
/freebsd-10-stable/lib/libthr/thread/
H A Dthr_cond.c42 int __pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex);
43 int __pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex,
45 static int cond_init(pthread_cond_t *cond, const pthread_condattr_t *attr);
46 static int cond_wait_common(pthread_cond_t *cond, pthread_mutex_t *mutex,
48 static int cond_signal_common(pthread_cond_t *cond);
49 static int cond_broadcast_common(pthread_cond_t *cond);
67 cond_init(pthread_cond_t *cond, const pthread_condattr_t *cond_attr) argument
86 *cond = cvp;
92 init_static(struct pthread *thread, pthread_cond_t *cond) argument
98 if (*cond
122 _pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *cond_attr) argument
130 _pthread_cond_destroy(pthread_cond_t *cond) argument
290 cond_wait_common(pthread_cond_t *cond, pthread_mutex_t *mutex, const struct timespec *abstime, int cancel) argument
315 _pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex) argument
322 __pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex) argument
329 _pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, const struct timespec * abstime) argument
341 __pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, const struct timespec *abstime) argument
353 cond_signal_common(pthread_cond_t *cond) argument
439 cond_broadcast_common(pthread_cond_t *cond) argument
477 _pthread_cond_signal(pthread_cond_t * cond) argument
484 _pthread_cond_broadcast(pthread_cond_t * cond) argument
[all...]
/freebsd-10-stable/sys/contrib/octeon-sdk/
H A Dcvmx-helper-cfg.h81 #define cvmx_helper_cfg_assert(cond) \
83 if (!(cond)) \
86 #cond, __FILE__, __LINE__); \
/freebsd-10-stable/contrib/ntp/sntp/libevent/include/event2/
H A Dthread.h150 void (*free_condition)(void *cond);
152 * threads waiting on 'cond' should be woken; otherwise, only on one
157 int (*signal_condition)(void *cond, int broadcast);
168 int (*wait_condition)(void *cond, void *lock,

Completed in 347 milliseconds

12345678910