danbev / learning-nodejs

Project for learning Node.js internals

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

There is no run_nextTick() in uv_run() function. But, How can nextTick callback function is processed between two phases ?

rpf5573 opened this issue · comments

There are uv__run_timers() and uv__run_pending() in uv_run(). But, there isn't run_next_tick().
How can my callback function which I registered with process.nextTick( {callback} ) is processed between two phases( uv__run_timers() & uv__run_pending() ) ?