Merge pull request #9706 from KagamiChan/master

📝  add notes for peak working set size on macOS
This commit is contained in:
Kevin Sawicki 2017-06-09 08:43:06 -07:00 committed by GitHub
commit 206bca52b7

View file

@ -3,7 +3,7 @@
* `pid` Integer - Process id of the process. * `pid` Integer - Process id of the process.
* `workingSetSize` Integer - The amount of memory currently pinned to actual physical RAM. * `workingSetSize` Integer - The amount of memory currently pinned to actual physical RAM.
* `peakWorkingSetSize` Integer - The maximum amount of memory that has ever been pinned * `peakWorkingSetSize` Integer - The maximum amount of memory that has ever been pinned
to actual physical RAM. to actual physical RAM. On macOS its value will always be 0.
* `privateBytes` Integer - The amount of memory not shared by other processes, such as * `privateBytes` Integer - The amount of memory not shared by other processes, such as
JS heap or HTML content. JS heap or HTML content.
* `sharedBytes` Integer - The amount of memory shared between processes, typically * `sharedBytes` Integer - The amount of memory shared between processes, typically