1 --- node-v15.5.1/src/node_process_object.cc.orig 2021-01-04 14:19:54.000000000 +0000
2 +++ node-v15.5.1/src/node_process_object.cc 2021-01-13 14:30:42.835547052 +0000
5 static void GetParentProcessId(Local<Name> property,
6 const PropertyCallbackInfo<Value>& info) {
7 - info.GetReturnValue().Set(uv_os_getppid());
9 + info.GetReturnValue().Set(static_cast<int32_t>(uv_os_getppid()));
11 + info.GetReturnValue().Set(uv_os_getppid());
15 MaybeLocal<Object> CreateProcessObject(Environment* env) {