Unverified Commit 7913d34d authored by Tsonglew's avatar Tsonglew Committed by GitHub
Browse files

Improve doc comment about AE_DONT_WAIT (#9165)


Co-authored-by: default avataryoav-steinberg <yoav@monfort.co.il>
parent 4434cebb
...@@ -340,8 +340,8 @@ static int processTimeEvents(aeEventLoop *eventLoop) { ...@@ -340,8 +340,8 @@ static int processTimeEvents(aeEventLoop *eventLoop) {
* if flags has AE_ALL_EVENTS set, all the kind of events are processed. * if flags has AE_ALL_EVENTS set, all the kind of events are processed.
* if flags has AE_FILE_EVENTS set, file events are processed. * if flags has AE_FILE_EVENTS set, file events are processed.
* if flags has AE_TIME_EVENTS set, time events are processed. * if flags has AE_TIME_EVENTS set, time events are processed.
* if flags has AE_DONT_WAIT set the function returns ASAP until all * if flags has AE_DONT_WAIT set, the function returns ASAP once all
* the events that's possible to process without to wait are processed. * the events that can be handled without a wait are processed.
* if flags has AE_CALL_AFTER_SLEEP set, the aftersleep callback is called. * if flags has AE_CALL_AFTER_SLEEP set, the aftersleep callback is called.
* if flags has AE_CALL_BEFORE_SLEEP set, the beforesleep callback is called. * if flags has AE_CALL_BEFORE_SLEEP set, the beforesleep callback is called.
* *
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment