Tells the next iteration/s of the event processing to set timeout of 0. */
| 109 | |
| 110 | /* Tells the next iteration/s of the event processing to set timeout of 0. */ |
| 111 | void 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 |