MCPcopy Create free account
hub / github.com/Snapchat/KeyDB / aeSetDontWait

Function aeSetDontWait

src/ae.cpp:370–375  ·  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

368
369/* Tells the next iteration/s of the event processing to set timeout of 0. */
370void aeSetDontWait(aeEventLoop *eventLoop, int noWait) {
371 if (noWait)
372 eventLoop->flags |= AE_DONT_WAIT;
373 else
374 eventLoop->flags &= ~AE_DONT_WAIT;
375}
376
377/* Resize the maximum set size of the event loop.
378 * 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