chore: remove leftover docs/api/structures/memory-info.md (#18421)

This commit is contained in:
Milan Burda 2019-05-23 21:25:52 +02:00 committed by John Kleinschmidt
parent b48dd6a11c
commit e32cf5c418
2 changed files with 0 additions and 13 deletions

View file

@ -1,12 +0,0 @@
# MemoryInfo Object
* `pid` Integer - Process id of the process.
* `workingSetSize` Integer - The amount of memory currently pinned to actual physical RAM.
* `peakWorkingSetSize` Integer - The maximum amount of memory that has ever been pinned
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
JS heap or HTML content.
* `sharedBytes` Integer - The amount of memory shared between processes, typically
memory consumed by the Electron code itself
Note that all statistics are reported in Kilobytes.