Searched refs:wakeup (Results 1 - 25 of 142) sorted by relevance

123456

/macosx-10.10.1/postfix-255/postfix/src/global/
H A Dmail_flush.c73 static char wakeup[] = {TRIGGER_REQ_WAKEUP}; local
79 wakeup, sizeof(wakeup)));
H A Dmail_stream.c217 static char wakeup[] = {TRIGGER_REQ_WAKEUP}; local
361 mail_trigger(info->class, info->service, wakeup, sizeof(wakeup));
/macosx-10.10.1/postfix-255/postfix/src/master/
H A Dmaster_wakeup.c5 /* Postfix master - start/stop service wakeup timers
15 /* This module implements automatic service wakeup. In order to
16 /* wakeup a service, a wakeup trigger is sent to the corresponding
20 /* master_wakeup_init() wakes up the named service. No wakeup
21 /* is done or scheduled when a zero wakeup time is given, or when
25 /* wakeup timer.
27 /* master_wakeup_cleanup() cancels the wakeup timer for the named
29 /* an active wakeup timer (doing so would cause a dangling reference
75 /* master_wakeup_timer_event - wakeup even
82 static char wakeup = TRIGGER_REQ_WAKEUP; local
[all...]
/macosx-10.10.1/ksh-23/ksh/src/cmd/ksh93/sh/
H A Dtimers.c32 double wakeup; member in struct:_timer
116 if(tp->wakeup <=now)
118 if(!tpold || tpold->wakeup>tp->wakeup)
123 if(!tpmin || tpmin->wakeup>tp->wakeup)
140 while((tp->wakeup += tp->incr) <= now);
141 if(!tpmin || tpmin->wakeup>tp->wakeup)
144 if(tpmin && (left==0 || (tp && tpmin->wakeup < (no
[all...]
/macosx-10.10.1/ruby-106/ruby/test/thread/
H A Dtest_sync.rb18 t.wakeup
34 t.wakeup
/macosx-10.10.1/smb-759.0/kernel/netsmb/
H A Dsmb_sleephandler.cpp37 void wakeup(void *);
/macosx-10.10.1/ppp-786.1.1/Drivers/L2TP/L2TP-extension/
H A Dl2tp_udp.c58 int wakeup; member in struct:l2tp_udp_thread
284 wakeup(&l2tp_udp_threads[i].wakeup);
373 wakeup(&l2tp_udp_threads[thread].wakeup);
417 wakeup(&thread_socket->terminate);
422 msleep(&thread_socket->wakeup, thread_socket->mtx, PZERO + 1, "l2tp_udp_thread_func", 0);
/macosx-10.10.1/ruby-106/ruby/sample/drb/
H A Dsimpletuple.rb25 t.wakeup if t
/macosx-10.10.1/xnu-2782.1.97/bsd/miscfs/fifofs/
H A Dfifo_vnops.c208 wakeup(&fip->fi_flags);
224 wakeup((caddr_t)&fip->fi_writers);
235 wakeup((caddr_t)&fip->fi_readers);
246 wakeup((caddr_t)&fip->fi_writers);
264 wakeup((caddr_t)&fip->fi_readers);
284 wakeup(&fip->fi_flags);
/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A DtclTimer.c787 Tcl_Time wakeup;
873 Tcl_GetTime(&wakeup);
874 wakeup.sec += (long)(ms / 1000);
875 wakeup.usec += ((long)(ms % 1000)) * 1000;
876 if (wakeup.usec > 1000000) {
877 wakeup.sec++;
878 wakeup.usec -= 1000000;
880 afterPtr->token = TclCreateAbsoluteTimerHandler(&wakeup, AfterProc,
775 Tcl_Time wakeup; local
/macosx-10.10.1/mDNSResponder-561.1.1/mDNSWindows/ControlPanel/
H A DSecondPage.cpp267 DWORD wakeup = 0; local
279 RegQueryValueEx( m_setupKey, L"Wakeup", NULL, NULL, (LPBYTE) &wakeup, &dwSize );
281 wakeup++;
283 err = RegSetValueEx( m_setupKey, L"Wakeup", 0, REG_DWORD, (LPBYTE) &wakeup, sizeof( DWORD ) );
/macosx-10.10.1/Heimdal-398.1.2/lib/ipc/
H A Dcommon.c218 int wakeup;
220 wakeup = (++s->counter == 0) ;
222 if (wakeup)
/macosx-10.10.1/xnu-2782.1.97/bsd/nfs/
H A Dnfs_upcall.c134 wakeup(&nfsrv_uc_thread_count);
247 wakeup(&nfsrv_uc_queue_tbl[i]);
317 DPRINT("\tUp-call queued on %d for wakeup of %p\n", qi, myqueue);
330 wakeup(myqueue);
H A Dnfs_srvcache.c287 wakeup(rp);
355 wakeup(rp);
418 wakeup(rp);
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/
H A Dtimer.c111 isc_condition_t wakeup; member in struct:isc__timermgr
225 * manager to force a wakeup.
311 SIGNAL(&manager->wakeup);
323 SIGNAL(&manager->wakeup);
360 SIGNAL(&manager->wakeup);
825 result = WAITUNTIL(&manager->wakeup, &manager->lock, &manager->due);
831 WAIT(&manager->wakeup, &manager->lock);
834 ISC_MSG_WAKEUP, "wakeup"));
916 if (isc_condition_init(&manager->wakeup) != ISC_R_SUCCESS) {
930 (void)isc_condition_destroy(&manager->wakeup);
[all...]
/macosx-10.10.1/ntp-92/lib/isc/
H A Dtimer.c95 isc_condition_t wakeup; member in struct:isc_timermgr
135 * manager to force a wakeup.
221 SIGNAL(&manager->wakeup);
233 SIGNAL(&manager->wakeup);
266 SIGNAL(&manager->wakeup);
722 result = WAITUNTIL(&manager->wakeup, &manager->lock, &manager->due);
728 WAIT(&manager->wakeup, &manager->lock);
731 ISC_MSG_WAKEUP, "wakeup"));
807 if (isc_condition_init(&manager->wakeup) != ISC_R_SUCCESS) {
821 (void)isc_condition_destroy(&manager->wakeup);
[all...]
/macosx-10.10.1/mDNSResponder-561.1.1/mDNSWindows/
H A DPoll.c70 HANDLE wakeup; member in struct:Poll_struct
292 gPoll.wakeup = CreateEvent( NULL, TRUE, FALSE, NULL );
293 require_action( gPoll.wakeup, exit, err = mStatus_NoMemoryErr );
441 ok = SetEvent( gPoll.wakeup );
451 ok = ResetEvent( gPoll.wakeup );
584 dlog( kDebugLevelChatty, DEBUG_NAME "Worker thread wakeup\n" );
651 source->handle = gPoll.wakeup;
712 ok = SetEvent( gPoll.wakeup );
/macosx-10.10.1/xnu-2782.1.97/bsd/hfs/
H A Dhfs_chash.c381 wakeup((caddr_t)cp);
445 wakeup((caddr_t)cp);
494 * Remove a cnode from the hash table and wakeup any waiters.
509 wakeup((caddr_t)cp);
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dsys_pipe.c678 wakeup(cpipe);
683 * wakeup anyone whos blocked in select
788 wakeup(rpipe);
833 wakeup(rpipe);
840 wakeup(rpipe);
933 wakeup(wpipe);
1049 wakeup(wpipe);
1087 wakeup(wpipe);
1096 wakeup(wpipe);
1293 wakeup(cpip
[all...]
H A Dsysv_msg.c384 wakeup((caddr_t)&free_msghdrs);
493 wakeup((caddr_t)msqptr);
996 wakeup((caddr_t)msqptr);
1007 wakeup((caddr_t)msqptr);
1041 wakeup((caddr_t)msqptr);
1064 wakeup((caddr_t)msqptr);
1090 wakeup((caddr_t) msqptr);
1112 wakeup((caddr_t)msqptr);
1408 wakeup((caddr_t)msqptr);
1441 wakeup((caddr_
[all...]
/macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/
H A DIOMapper.cpp69 void wakeup(void *event) { IOLockWakeup(fWaitLock, event, false); }; function in class:IOMapperLock
86 sMapperLock.wakeup(&IOMapper::gSystem);
128 sMapperLock.wakeup(&IOMapper::gSystem);
/macosx-10.10.1/IOStorageFamily-182.1.1/
H A DIOStorage.cpp80 inline void wakeup( void * event ) function in class:IOStorageSyncerLock
124 gIOStorageSyncerLock.wakeup( this );
/macosx-10.10.1/ppp-786.1.1/Drivers/PPTP/PPTP-extension/
H A Dpptp_proto.c114 wakeup(&pptp_timer_thread_is_dead);
186 wakeup(&pptp_timer_thread_is_dying); /* Wake thread */
/macosx-10.10.1/ruby-106/ruby/lib/
H A Dsync.rb211 th.wakeup
217 th.wakeup
/macosx-10.10.1/xnu-2782.1.97/bsd/dev/dtrace/
H A Ddtrace_subr.c144 wakeup(entry);

Completed in 279 milliseconds

123456