You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now it returns rss memory only but according to: https://msdn.microsoft.com/en-us/library/windows/desktop/aa366775(v=vs.85).aspx
...there's a type distinction we are not taking into account.
Each memory region being processed can either be of MEM_IMAGE, MEM_MAPPED or MEM_PRIVATE type. So perhaps the returned tuple should not have any rss field but instead it should have image, mapped and private (which is the most import in order to calculate USS, see also #746).
The text was updated successfully, but these errors were encountered:
Right now it returns
rss
memory only but according to:https://msdn.microsoft.com/en-us/library/windows/desktop/aa366775(v=vs.85).aspx
...there's a
type
distinction we are not taking into account.Each memory region being processed can either be of MEM_IMAGE, MEM_MAPPED or MEM_PRIVATE type. So perhaps the returned tuple should not have any
rss
field but instead it should haveimage
,mapped
andprivate
(which is the most import in order to calculate USS, see also #746).The text was updated successfully, but these errors were encountered: