MCPcopy Create free account
hub / github.com/F-Stack/f-stack / aeSetDontWait

Function aeSetDontWait

app/redis-6.2.6/src/ae.c:111–116  ·  view source on GitHub ↗

Tells the next iteration/s of the event processing to set timeout of 0. */

Source from the content-addressed store, hash-verified

109
110/* Tells the next iteration/s of the event processing to set timeout of 0. */
111void aeSetDontWait(aeEventLoop *eventLoop, int noWait) {
112 if (noWait)
113 eventLoop->flags |= AE_DONT_WAIT;
114 else
115 eventLoop->flags &= ~AE_DONT_WAIT;
116}
117
118/* Resize the maximum set size of the event loop.
119 * If the requested set size is smaller than the current set size, but

Callers 1

beforeSleepFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected