Code review minor changes (names, comments).

This commit is contained in:
Yossi Gottlieb
2019-10-15 17:21:33 +03:00
parent 71f10de4de
commit c469f6ad9e
6 changed files with 37 additions and 7 deletions

View File

@ -99,7 +99,7 @@ int aeGetSetSize(aeEventLoop *eventLoop) {
}
/* Tells the next iteration/s of the event processing to set timeout of 0. */
void aeDontWait(aeEventLoop *eventLoop, int noWait) {
void aeSetDontWait(aeEventLoop *eventLoop, int noWait) {
if (noWait)
eventLoop->flags |= AE_DONT_WAIT;
else