| Index: runtime/vm/service.cc
|
| diff --git a/runtime/vm/service.cc b/runtime/vm/service.cc
|
| index eeb6d23c661a1e4db9eaa0e543704fbecc5d1fca..69410ee3684dffd7f3d500a58c2be8140f5ee337 100644
|
| --- a/runtime/vm/service.cc
|
| +++ b/runtime/vm/service.cc
|
| @@ -3845,8 +3845,8 @@ void Service::PrintJSONForVM(JSONStream* js, bool ref) {
|
| jsobj.AddProperty("hostCPU", HostCPUFeatures::hardware());
|
| jsobj.AddProperty("version", Version::String());
|
| jsobj.AddProperty("_profilerMode", FLAG_profile_vm ? "VM" : "Dart");
|
| - jsobj.AddProperty("_nativeZoneMemoryUsage",
|
| - ApiNativeScope::current_memory_usage());
|
| + jsobj.AddProperty64("_nativeZoneMemoryUsage",
|
| + ApiNativeScope::current_memory_usage());
|
| jsobj.AddProperty64("pid", OS::ProcessId());
|
| jsobj.AddProperty64("_maxRSS", OS::MaxRSS());
|
| jsobj.AddPropertyTimeMillis(
|
|
|