Skip to content

Commit 2d4fca2

Browse files
cjihrigMylesBorins
authored andcommitted
src: add process.ppid
Fixes: #14957 PR-URL: #16839 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent a1d7469 commit 2d4fca2

File tree

3 files changed

+38
-0
lines changed

3 files changed

+38
-0
lines changed

doc/api/process.md

+13
Original file line numberDiff line numberDiff line change
@@ -1326,6 +1326,19 @@ system platform on which the Node.js process is running. For instance
13261326
console.log(`This platform is ${process.platform}`);
13271327
```
13281328

1329+
## process.ppid
1330+
<!-- YAML
1331+
added: REPLACEME
1332+
-->
1333+
1334+
* {integer}
1335+
1336+
The `process.ppid` property returns the PID of the current parent process.
1337+
1338+
```js
1339+
console.log(`The parent process is pid ${process.ppid}`);
1340+
```
1341+
13291342
## process.release
13301343
<!-- YAML
13311344
added: v3.0.0

src/node.cc

+9
Original file line numberDiff line numberDiff line change
@@ -2950,6 +2950,12 @@ static void EnvEnumerator(const PropertyCallbackInfo<Array>& info) {
29502950
}
29512951

29522952

2953+
static void GetParentProcessId(Local<Name> property,
2954+
const PropertyCallbackInfo<Value>& info) {
2955+
info.GetReturnValue().Set(Integer::New(info.GetIsolate(), uv_os_getppid()));
2956+
}
2957+
2958+
29532959
static Local<Object> GetFeatures(Environment* env) {
29542960
EscapableHandleScope scope(env->isolate());
29552961

@@ -3305,6 +3311,9 @@ void SetupProcessObject(Environment* env,
33053311
READONLY_PROPERTY(process, "pid", Integer::New(env->isolate(), getpid()));
33063312
READONLY_PROPERTY(process, "features", GetFeatures(env));
33073313

3314+
process->SetAccessor(FIXED_ONE_BYTE_STRING(env->isolate(), "ppid"),
3315+
GetParentProcessId);
3316+
33083317
auto need_immediate_callback_string =
33093318
FIXED_ONE_BYTE_STRING(env->isolate(), "_needImmediateCallback");
33103319
CHECK(process->SetAccessor(env->context(), need_immediate_callback_string,

test/parallel/test-process-ppid.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
'use strict';
2+
require('../common');
3+
const assert = require('assert');
4+
const cp = require('child_process');
5+
6+
if (process.argv[2] === 'child') {
7+
// The following console.log() call is part of the test's functionality.
8+
console.log(process.ppid);
9+
} else {
10+
const child = cp.spawnSync(process.execPath, [__filename, 'child']);
11+
12+
assert.strictEqual(child.status, 0);
13+
assert.strictEqual(child.signal, null);
14+
assert.strictEqual(+child.stdout.toString().trim(), process.pid);
15+
assert.strictEqual(child.stderr.toString().trim(), '');
16+
}

0 commit comments

Comments
 (0)