We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cea1c2d commit 441a499Copy full SHA for 441a499
doc/api/process.md
@@ -1282,8 +1282,9 @@ Will generate:
1282
1283
`heapTotal` and `heapUsed` refer to V8's memory usage.
1284
`external` refers to the memory usage of C++ objects bound to JavaScript
1285
-objects managed by V8. `rss`, Resident Set Size, is the total space allocated in
1286
-memory for the process, which includes the _heap_, _code segment_ and _stack_.
+objects managed by V8. `rss`, Resident Set Size, is the amount of space
+occupied in the main memory device (that is a subset of the total allocated
1287
+memory) for the process, which includes the _heap_, _code segment_ and _stack_.
1288
1289
The _heap_ is where objects, strings and closures are stored. Variables are
1290
stored in the _stack_ and the actual JavaScript code resides in the
0 commit comments