Skip to content

Commit 331681a

Browse files
trevnorrisMylesBorins
authored andcommitted
src: return early if nextTickQueue is empty
This brings the node::MakeCallback and node::AsyncWrap::MakeCallback implementations into alignment in that they return early if the nextTickQueue is empty after processing the MicrotaskQueue. Include test to make sure early return happens. Test has text explaining the conditions for the test to pass, since it relies on internal mechanisms that aren't guaranteed in the future. PR-URL: #10274 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent c13429a commit 331681a

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

src/node.cc

+1
Original file line numberDiff line numberDiff line change
@@ -1317,6 +1317,7 @@ Local<Value> MakeCallback(Environment* env,
13171317

13181318
if (tick_info->length() == 0) {
13191319
tick_info->set_index(0);
1320+
return ret;
13201321
}
13211322

13221323
if (env->tick_callback_function()->Call(process, 0, nullptr).IsEmpty()) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
'use strict';
2+
3+
const common = require('../common');
4+
const assert = require('assert');
5+
let allsGood = false;
6+
let cntr = 0;
7+
8+
process.on('exit', () => {
9+
assert.ok(cntr > 0, '_tickDomainCallback was never called');
10+
});
11+
12+
/**
13+
* This test relies upon the following internals to work as specified:
14+
* - require('domain') causes node::Environment::set_tick_callback_function()
15+
* to use process._tickDomainCallback() to process the nextTickQueue;
16+
* replacing process._tickCallback().
17+
* - setImmediate() uses node::MakeCallback() instead of
18+
* node::AsyncWrap::MakeCallback(). Otherwise the test will always pass.
19+
* Have not found a way to verify that node::MakeCallback() is used.
20+
*/
21+
process._tickDomainCallback = function _tickDomainCallback() {
22+
assert.ok(allsGood, '_tickDomainCallback should not have been called');
23+
cntr++;
24+
};
25+
26+
setImmediate(common.mustCall(() => {
27+
require('domain');
28+
setImmediate(common.mustCall(() => setImmediate(common.mustCall(() => {
29+
allsGood = true;
30+
process.nextTick(() => {});
31+
}))));
32+
}));

0 commit comments

Comments
 (0)