Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions doc/api/process.md
Original file line number Diff line number Diff line change
Expand Up @@ -2569,6 +2569,17 @@ process has been running.
The return value includes fractions of a second. Use `Math.floor()` to get whole
seconds.

## `process._getActiveHandles()`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
## `process._getActiveHandles()`
## `process.getActiveHandles()`

<!-- YAML
added: REPLACEME
-->

* Returns: {Array}

The `process.getActiveHandles` method returns the list of handles that are
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
The `process.getActiveHandles` method returns the list of handles that are
The `process.getActiveHandles()` method returns the list of handles that are

currently opened up by the process. These can be open file descriptors,
conenction, resources that are actively being held by the process.
Comment on lines +2580 to +2581
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
currently opened up by the process. These can be open file descriptors,
conenction, resources that are actively being held by the process.
currently acquired by the process. These can be open file descriptors,
connections, and resources.


## `process.version`
<!-- YAML
added: v0.1.3
Expand Down