| /openbsd-src/gnu/usr.bin/perl/dist/threads-shared/t/ |
| H A D | wait.t | 48 # cond_wait and cond_timedwait extended tests adapted from cond.t 63 ok($TEST++, defined &cond_wait, "cond_wait() present"); 64 ok($TEST++, (prototype(\&cond_wait) eq '\[$@%];\[$@%]'), 65 q/cond_wait() prototype '\[$@%];\[$@%]'/); 72 "simple", # cond var == lock var; implicit lock; e.g.: cond_wait($c) 73 "repeat", # cond var == lock var; explicit lock; e.g.: cond_wait($c, $c) 74 "twain" # cond var != lock var; explicit lock; e.g.: cond_wait($c, $l) 105 # - TEST cond_wait 117 cond_wait($cond), last if /simple/; 118 cond_wait($cond, $cond), last if /repeat/; [all …]
|
| H A D | waithires.t | 74 "simple", # cond var == lock var; implicit lock; e.g.: cond_wait($c) 75 "repeat", # cond var == lock var; explicit lock; e.g.: cond_wait($c, $c) 76 "twain" # cond var != lock var; explicit lock; e.g.: cond_wait($c, $l) 98 cond_wait($_[0], $_[2]); 101 cond_wait($_[0]); 162 cond_wait($ready) while !$ready; # wait for child to start up 297 cond_wait($ready) while !$ready; # wait for child to start up
|
| H A D | disabled.t | 13 foreach my $func (qw(share cond_wait cond_signal cond_broadcast)) { 26 foreach my $func (qw(cond_wait cond_signal cond_broadcast)) {
|
| H A D | cond.t | 150 cond_wait($lock); 175 cond_wait($lockref); 212 cond_wait($counter); 243 cond_wait($r);
|
| /openbsd-src/gnu/usr.bin/perl/dist/threads/t/ |
| H A D | state.t | 68 cond_wait($GO); 83 cond_wait($READY); 98 cond_wait($DONE); 185 { lock ($go); cond_wait($go) until $go; } 202 cond_wait($go) until $go; 229 cond_wait($done) until ($done == 1); 233 cond_wait($rdy) until ($rdy == 8); 245 cond_wait($done) until ($done == 8);
|
| H A D | free.t | 108 cond_wait($COUNT) if ($COUNT < 5); 153 cond_wait($COUNT); 204 cond_wait($COUNT);
|
| H A D | join.t | 181 cond_wait($go) until $go; 203 { lock ($go); cond_wait($go) until $go; } 210 lock($go); cond_wait($go) until $go;
|
| H A D | free2.t | 96 cond_wait(%READY); 328 cond_wait($COUNT);
|
| H A D | exit.t | 84 cond_wait($WAIT);
|
| H A D | thread.t | 321 cond_wait(@tids) while (! @tids);
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.threads/ |
| H A D | pthread_cond_wait.c | 28 cond_wait (pthread_cond_t *cond, pthread_mutex_t *mut) in cond_wait() function 46 cond_wait (&cond, &mut); in noreturn()
|
| /openbsd-src/gnu/usr.bin/perl/dist/Thread-Queue/lib/Thread/ |
| H A D | Queue.pm | 37 cond_wait(%$self) while ($$self{'LIMIT'} && (@$queue >= $$self{'LIMIT'})); 82 cond_wait(%$self) while ((@$queue < $count) && ! $$self{'ENDED'});
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | gthr-solaris.h | 72 #pragma weak cond_wait macro 355 return cond_wait ((cond_t *) (&(condition->backend)), in __gthread_objc_condition_wait()
|
| /openbsd-src/gnu/usr.bin/perl/t/op/ |
| H A D | reset.t | 240 cond_wait($$l_r) until $$l_r eq "B"; 260 cond_wait($lock) until $lock eq "C";
|
| /openbsd-src/gnu/usr.bin/perl/dist/Thread-Semaphore/lib/Thread/ |
| H A D | Semaphore.pm | 41 cond_wait($$sema) until ($$sema >= $dec);
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | gthr-solaris.h | 94 __gthrw(cond_wait) in __gthrw() 377 return __gthrw_(cond_wait) ((cond_t *) (&(condition->backend)), in __gthread_objc_condition_wait()
|
| /openbsd-src/gnu/usr.bin/perl/lib/ |
| H A D | Thread.t | 71 cond_wait($lock);
|
| /openbsd-src/sys/kern/ |
| H A D | kern_smr.c | 302 cond_wait(&c, "smrbar"); in smr_barrier_impl()
|
| H A D | kern_synch.c | 991 cond_wait(struct cond *c, const char *wmesg) 894 cond_wait(struct cond *c, const char *wmesg) cond_wait() function
|
| H A D | kern_sched.c | 740 cond_wait(&sb.cond, "sbar"); in sched_barrier()
|
| H A D | kern_timeout.c | 506 cond_wait(&c, "tmobar"); in timeout_barrier()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_interceptors_posix.cpp | 1244 int cond_wait(ThreadState *thr, uptr pc, ScopedInterceptor *si, const Fn &fn, in cond_wait() function 1270 return cond_wait( in INTERCEPTOR() 1278 return cond_wait( in INTERCEPTOR() 1289 return cond_wait( in INTERCEPTOR() 1304 return cond_wait( in INTERCEPTOR() 2814 TSAN_INTERCEPTOR_FREEBSD_ALIAS(int, cond_wait, void *c, void *m) 2833 TSAN_INTERCEPTOR_NETBSD_ALIAS(int, cond_wait, void *c, void *m) 3072 TSAN_MAYBE_INTERCEPT_FREEBSD_ALIAS(cond_wait); in InitializeInterceptors() 3091 TSAN_MAYBE_INTERCEPT_NETBSD_ALIAS(cond_wait); in InitializeInterceptors()
|
| /openbsd-src/sys/sys/ |
| H A D | systm.h | 264 void cond_wait(struct cond *, const char *);
|
| /openbsd-src/gnu/usr.bin/perl/pod/ |
| H A D | perl583delta.pod | 78 C<cond_wait> has a new two argument form. C<cond_timedwait> has been added.
|
| /openbsd-src/sys/net/ |
| H A D | ifq.c | 200 cond_wait(&c, "ifqbar"); in ifq_barrier_task()
|