mirror of
https://github.com/nodejs/node.git
synced 2025-12-28 07:50:41 +00:00
doc: fix the order of process.md sections
Fixes: https://github.com/nodejs/node/issues/58402 PR-URL: https://github.com/nodejs/node/pull/58403 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
This commit is contained in:
parent
cb88e99bfe
commit
27edff5cb9
@ -982,6 +982,28 @@ $ bash -c 'exec -a customArgv0 ./node'
|
||||
'customArgv0'
|
||||
```
|
||||
|
||||
## `process.availableMemory()`
|
||||
|
||||
<!-- YAML
|
||||
added:
|
||||
- v22.0.0
|
||||
- v20.13.0
|
||||
changes:
|
||||
- version:
|
||||
- v24.0.0
|
||||
- v22.16.0
|
||||
pr-url: https://github.com/nodejs/node/pull/57765
|
||||
description: Change stability index for this feature from Experimental to Stable.
|
||||
-->
|
||||
|
||||
* {number}
|
||||
|
||||
Gets the amount of free memory that is still available to the process
|
||||
(in bytes).
|
||||
|
||||
See [`uv_get_available_memory`][uv_get_available_memory] for more
|
||||
information.
|
||||
|
||||
## `process.channel`
|
||||
|
||||
<!-- YAML
|
||||
@ -1157,28 +1179,6 @@ is unknown, `0` is returned.
|
||||
See [`uv_get_constrained_memory`][uv_get_constrained_memory] for more
|
||||
information.
|
||||
|
||||
## `process.availableMemory()`
|
||||
|
||||
<!-- YAML
|
||||
added:
|
||||
- v22.0.0
|
||||
- v20.13.0
|
||||
changes:
|
||||
- version:
|
||||
- v24.0.0
|
||||
- v22.16.0
|
||||
pr-url: https://github.com/nodejs/node/pull/57765
|
||||
description: Change stability index for this feature from Experimental to Stable.
|
||||
-->
|
||||
|
||||
* {number}
|
||||
|
||||
Gets the amount of free memory that is still available to the process
|
||||
(in bytes).
|
||||
|
||||
See [`uv_get_available_memory`][uv_get_available_memory] for more
|
||||
information.
|
||||
|
||||
## `process.cpuUsage([previousValue])`
|
||||
|
||||
<!-- YAML
|
||||
@ -1780,6 +1780,35 @@ that started the Node.js process. Symbolic links, if any, are resolved.
|
||||
'/usr/local/bin/node'
|
||||
```
|
||||
|
||||
## `process.execve(file[, args[, env]])`
|
||||
|
||||
<!-- YAML
|
||||
added:
|
||||
- v23.11.0
|
||||
- v22.15.0
|
||||
-->
|
||||
|
||||
> Stability: 1 - Experimental
|
||||
|
||||
* `file` {string} The name or path of the executable file to run.
|
||||
* `args` {string\[]} List of string arguments. No argument can contain a null-byte (`\u0000`).
|
||||
* `env` {Object} Environment key-value pairs.
|
||||
No key or value can contain a null-byte (`\u0000`).
|
||||
**Default:** `process.env`.
|
||||
|
||||
Replaces the current process with a new process.
|
||||
|
||||
This is achieved by using the `execve` POSIX function and therefore no memory or other
|
||||
resources from the current process are preserved, except for the standard input,
|
||||
standard output and standard error file descriptor.
|
||||
|
||||
All other resources are discarded by the system when the processes are swapped, without triggering
|
||||
any exit or close events and without running any cleanup handler.
|
||||
|
||||
This function will never return, unless an error occurred.
|
||||
|
||||
This function is not available on Windows or IBM i.
|
||||
|
||||
## `process.exit([code])`
|
||||
|
||||
<!-- YAML
|
||||
@ -3360,35 +3389,6 @@ In custom builds from non-release versions of the source tree, only the
|
||||
`name` property may be present. The additional properties should not be
|
||||
relied upon to exist.
|
||||
|
||||
## `process.execve(file[, args[, env]])`
|
||||
|
||||
<!-- YAML
|
||||
added:
|
||||
- v23.11.0
|
||||
- v22.15.0
|
||||
-->
|
||||
|
||||
> Stability: 1 - Experimental
|
||||
|
||||
* `file` {string} The name or path of the executable file to run.
|
||||
* `args` {string\[]} List of string arguments. No argument can contain a null-byte (`\u0000`).
|
||||
* `env` {Object} Environment key-value pairs.
|
||||
No key or value can contain a null-byte (`\u0000`).
|
||||
**Default:** `process.env`.
|
||||
|
||||
Replaces the current process with a new process.
|
||||
|
||||
This is achieved by using the `execve` POSIX function and therefore no memory or other
|
||||
resources from the current process are preserved, except for the standard input,
|
||||
standard output and standard error file descriptor.
|
||||
|
||||
All other resources are discarded by the system when the processes are swapped, without triggering
|
||||
any exit or close events and without running any cleanup handler.
|
||||
|
||||
This function will never return, unless an error occurred.
|
||||
|
||||
This function is not available on Windows or IBM i.
|
||||
|
||||
## `process.report`
|
||||
|
||||
<!-- YAML
|
||||
|
||||
Loading…
Reference in New Issue
Block a user