@@ -1015,6 +1015,7 @@ void PromiseRejectCallback(PromiseRejectMessage message) {
1015
1015
Local<Value> args[] = { event, promise, value };
1016
1016
Local<Object> process = env->process_object ();
1017
1017
1018
+ env->inc_callout_count ();
1018
1019
callback->Call (process, ARRAY_SIZE (args), args);
1019
1020
}
1020
1021
@@ -1068,24 +1069,28 @@ Local<Value> MakeCallback(Environment* env,
1068
1069
if (has_domain) {
1069
1070
Local<Value> enter_v = domain->Get (env->enter_string ());
1070
1071
if (enter_v->IsFunction ()) {
1071
- enter_v.As <Function>()->Call (domain, 0 , nullptr );
1072
+ env->inc_callout_count ();
1073
+ enter_v.As <Function>()->Call (domain, 0 , nullptr );
1072
1074
if (try_catch.HasCaught ())
1073
1075
return Undefined (env->isolate ());
1074
1076
}
1075
1077
}
1076
1078
1077
1079
if (has_async_queue) {
1078
1080
try_catch.SetVerbose (false );
1081
+ env->inc_callout_count ();
1079
1082
env->async_hooks_pre_function ()->Call (object, 0 , nullptr );
1080
1083
if (try_catch.HasCaught ())
1081
1084
FatalError (" node::MakeCallback" , " pre hook threw" );
1082
1085
try_catch.SetVerbose (true );
1083
1086
}
1084
1087
1088
+ env->inc_callout_count ();
1085
1089
Local<Value> ret = callback->Call (recv, argc, argv);
1086
1090
1087
1091
if (has_async_queue) {
1088
1092
try_catch.SetVerbose (false );
1093
+ env->inc_callout_count ();
1089
1094
env->async_hooks_post_function ()->Call (object, 0 , nullptr );
1090
1095
if (try_catch.HasCaught ())
1091
1096
FatalError (" node::MakeCallback" , " post hook threw" );
@@ -1095,6 +1100,7 @@ Local<Value> MakeCallback(Environment* env,
1095
1100
if (has_domain) {
1096
1101
Local<Value> exit_v = domain->Get (env->exit_string ());
1097
1102
if (exit_v->IsFunction ()) {
1103
+ env->inc_callout_count ();
1098
1104
exit_v.As <Function>()->Call (domain, 0 , nullptr );
1099
1105
if (try_catch.HasCaught ())
1100
1106
return Undefined (env->isolate ());
@@ -3971,17 +3977,11 @@ static void StartNodeInstance(void* arg) {
3971
3977
v8::platform::PumpMessageLoop (default_platform, isolate);
3972
3978
EmitBeforeExit (env);
3973
3979
3974
- // If there are only unrefed handles left, we need to run an
3975
- // extra event loop turn to purge the unrefed handles.
3976
- if (event_loop->active_handles == 0 &&
3977
- event_loop->handle_queue [0 ] != event_loop->handle_queue [1 ])
3978
- uv_run (event_loop, UV_RUN_NOWAIT);
3979
-
3980
3980
// Emit `beforeExit` if the loop became alive either after emitting
3981
3981
// event, or after running some callbacks.
3982
- more = uv_loop_alive (event_loop );
3983
- if ( uv_run (event_loop, UV_RUN_NOWAIT) != 0 )
3984
- more = true ;
3982
+ env-> reset_callout_count ( );
3983
+ uv_run (event_loop, UV_RUN_NOWAIT);
3984
+ more = uv_loop_alive (event_loop) || env-> callout_count () != 0 ;
3985
3985
}
3986
3986
} while (more == true );
3987
3987
}
0 commit comments