Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoyee Cheung <joyeec9h3@gmail.com>2021-08-31 18:18:59 +0300
committerJoyee Cheung <joyeec9h3@gmail.com>2021-09-06 13:12:48 +0300
commitcca0305e1e0b4e841882d9e1ab60c254cfe376ba (patch)
tree38c1005313abadec1e3b23a28b55823e8cee3ae3 /src/node_process_object.cc
parentcf11a2b0fb990a5a017ccd7b0183963f0e06ac2d (diff)
src: register missing process methods external references
PR-URL: https://github.com/nodejs/node/pull/39961 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michael Dawson <midawson@redhat.com>
Diffstat (limited to 'src/node_process_object.cc')
-rw-r--r--src/node_process_object.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/node_process_object.cc b/src/node_process_object.cc
index 587b4ecb936..29f6569a45e 100644
--- a/src/node_process_object.cc
+++ b/src/node_process_object.cc
@@ -211,6 +211,11 @@ void PatchProcessObject(const FunctionCallbackInfo<Value>& args) {
void RegisterProcessExternalReferences(ExternalReferenceRegistry* registry) {
registry->Register(RawDebug);
+ registry->Register(GetParentProcessId);
+ registry->Register(DebugPortSetter);
+ registry->Register(DebugPortGetter);
+ registry->Register(ProcessTitleSetter);
+ registry->Register(ProcessTitleGetter);
}
} // namespace node