From a702f8a5f5acf3fadf2a7382341fba35d8313aea Mon Sep 17 00:00:00 2001 From: Kagami Date: Fri, 9 Jun 2017 01:05:53 +0800 Subject: [PATCH] add peak working set size comment --- docs/api/structures/memory-info.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/structures/memory-info.md b/docs/api/structures/memory-info.md index f6b9d17aaa19..fe0b7d4d7efc 100644 --- a/docs/api/structures/memory-info.md +++ b/docs/api/structures/memory-info.md @@ -3,7 +3,7 @@ * `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. + 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