From 07d78b79e88b6a003b989942923506cb2b4bc61a Mon Sep 17 00:00:00 2001 From: Gloria Date: Wed, 8 Mar 2023 15:51:08 +0800 Subject: [PATCH] Update docs against 14912 Signed-off-by: wusongqing --- .../reference/apis/js-apis-process.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/en/application-dev/reference/apis/js-apis-process.md b/en/application-dev/reference/apis/js-apis-process.md index e8f5549c0e..c6bfb1231d 100755 --- a/en/application-dev/reference/apis/js-apis-process.md +++ b/en/application-dev/reference/apis/js-apis-process.md @@ -17,14 +17,14 @@ import process from '@ohos.process'; | Name| Type| Readable| Writable| Description| | -------- | -------- | -------- | -------- | -------- | -| egid | number | Yes| No| Effective group identifier (EGID) of a process. This is a system API and cannot be called by third-party applications.| -| euid | number | Yes| No| Effective user identifier (EUID) of a process. This is a system API and cannot be called by third-party applications.| -| gid | number | Yes| No| Group identifier (GID) of a process. This is a system API and cannot be called by third-party applications.| -| uid | number | Yes| No| User identifier (UID) of a process.| +| egid | number | Yes| No| Effective group identifier (EGID) of the process. This is a system API and cannot be called by third-party applications.| +| euid | number | Yes| No| Effective user identifier (EUID) of the process. This is a system API and cannot be called by third-party applications.| +| gid | number | Yes| No| Group identifier (GID) of the process. This is a system API and cannot be called by third-party applications.| +| uid | number | Yes| No| User identifier (UID) of the process.| | groups | number[] | Yes| No| Array with supplementary group IDs. This is a system API and cannot be called by third-party applications.| -| pid | number | Yes| No| Process ID (PID) of a process.| -| ppid | number | Yes| No| Parent process ID (PPID) of a process. This is a system API and cannot be called by third-party applications.| -| tid8+ | number | Yes| No| Thread ID (TID) of a process.| +| pid | number | Yes| No| Process ID (PID) of the process.| +| ppid | number | Yes| No| Parent process ID (PPID) of the process. This is a system API and cannot be called by third-party applications.| +| tid8+ | number | Yes| No| Thread ID (TID) of the thread.| ## ChildProcess -- GitLab