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

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/vs/base/parts/sandbox/electron-sandbox/globals.ts')
-rw-r--r--src/vs/base/parts/sandbox/electron-sandbox/globals.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/vs/base/parts/sandbox/electron-sandbox/globals.ts b/src/vs/base/parts/sandbox/electron-sandbox/globals.ts
index 698d886ce43..7d9b29a6e3a 100644
--- a/src/vs/base/parts/sandbox/electron-sandbox/globals.ts
+++ b/src/vs/base/parts/sandbox/electron-sandbox/globals.ts
@@ -35,6 +35,11 @@ export interface ISandboxNodeProcess extends INodeProcess {
readonly sandboxed: boolean;
/**
+ * The `process.pid` property returns the PID of the process.
+ */
+ readonly pid: number;
+
+ /**
* A list of versions for the current node.js/electron configuration.
*/
readonly versions: { [key: string]: string | undefined };