diff options
author | Anna Henningsen <anna@addaleax.net> | 2019-11-02 19:06:47 +0100 |
---|---|---|
committer | Anna Henningsen <anna@addaleax.net> | 2019-11-06 23:26:03 +0100 |
commit | 5bf43729a403b992cc90b5cdbbaaf505769d1107 (patch) | |
tree | e0f7eea86af950fdfc8cecaca63a6334d2072159 /src/node_errors.cc | |
parent | 55f98df303939774639bb597c6392c1c85bae6dd (diff) | |
download | node-new-5bf43729a403b992cc90b5cdbbaaf505769d1107.tar.gz |
src: make EndStartedProfilers an exit hook
Run `EndStartedProfilers` on Environment teardown.
This is part of a series of changes to make embedding easier, by
requiring fewer internal methods to build a fully functioning
Node.js instance.
PR-URL: https://github.com/nodejs/node/pull/30229
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Shelley Vohr <codebytere@gmail.com>
Diffstat (limited to 'src/node_errors.cc')
-rw-r--r-- | src/node_errors.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/node_errors.cc b/src/node_errors.cc index ec14746514..e094fe4681 100644 --- a/src/node_errors.cc +++ b/src/node_errors.cc @@ -993,9 +993,7 @@ void TriggerUncaughtException(Isolate* isolate, // Now we are certain that the exception is fatal. ReportFatalException(env, error, message, EnhanceFatalException::kEnhance); -#if HAVE_INSPECTOR - profiler::EndStartedProfilers(env); -#endif + RunAtExit(env); // If the global uncaught exception handler sets process.exitCode, // exit with that code. Otherwise, exit with 1. |