Can recursive/nested ticks happen in node? I mean functions registered with 
process.nextTick()? Is this possible in user land or node-core only?

i'm trying to make sense of the below code from node.cc:

if (tick_info->in_tick()) {

    return ret;

  }

 

  …

 

  tick_info->set_in_tick(true);

 

  env->tick_callback_function()->Call(process, 0, NULL);

 

  tick_info->set_in_tick(false);

 

thanks!

-- 
-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to