Jcmd
command provides a way to keep track of internal memory usage of Java HotSpot
VM.
Execute the command ‘jcmd
1464 VM.native_memory summary’ to get the summary of vm native memory.
Execute the command ‘jcmd
8956 VM.native_memory detail’ to get the detailed information of vm native
memory.
For example, Compile and run below
application.
HelloWorld.java
public class HelloWorld { public static void main(String args[]) throws Exception { Thread t1 = new Thread() { public void run() { while (true) { try { Thread.sleep(5000); } catch (Exception e) { } } } }; t1.start(); } }
To
get the native memory report, you need to launch the application using the
option -XX:NativeMemoryTracking.
'-XX:NativeMemoryTracking'
takes two values: summary, detail.
To
get the native memory details, you can run either of below commands.
java
-XX:NativeMemoryTracking=summary -classpath . HelloWorld
java
-XX:NativeMemoryTracking=detail -classpath . HelloWorld
Get native memory
summary data
Open
command prompt and execute below command.
java
-XX:NativeMemoryTracking=summary -classpath . HelloWorld
Open
another command prompt and execute jcmd.
C:\>jcmd 4544 org.apache.chemistry.opencmis.workbench.Workbench 9168 sun.tools.jcmd.JCmd 1464 HelloWorld 15308
As
you see above output, HelloWorld application is running with process id 1464.
C:\>jcmd 1464 VM.native_memory summary
1464:
Native Memory Tracking:
Total: reserved=5656776KB, committed=443600KB
- Java Heap (reserved=4163584KB, committed=262144KB)
(mmap: reserved=4163584KB, committed=262144KB)
- Class (reserved=1061996KB, committed=10092KB)
(classes #402)
(malloc=5228KB #146)
(mmap: reserved=1056768KB, committed=4864KB)
- Thread (reserved=16451KB, committed=16451KB)
(thread #17)
(stack: reserved=16384KB, committed=16384KB)
(malloc=48KB #87)
(arena=19KB #32)
- Code (reserved=249635KB, committed=2571KB)
(malloc=35KB #306)
(mmap: reserved=249600KB, committed=2536KB)
- GC (reserved=158027KB, committed=145259KB)
(malloc=5771KB #117)
(mmap: reserved=152256KB, committed=139488KB)
- Compiler (reserved=132KB, committed=132KB)
(malloc=2KB #23)
(arena=131KB #3)
- Internal (reserved=5381KB, committed=5381KB)
(malloc=5317KB #1342)
(mmap: reserved=64KB, committed=64KB)
- Symbol (reserved=1356KB, committed=1356KB)
(malloc=900KB #68)
(arena=456KB #1)
- Native Memory Tracking (reserved=38KB, committed=38KB)
(malloc=3KB #41)
(tracking overhead=34KB)
- Arena Chunk (reserved=175KB, committed=175KB)
(malloc=175KB)
Get native memory
detailed data
Open
command prompt and execute below command.
java
-XX:NativeMemoryTracking=detail -classpath . HelloWorld
Open
another command prompt and execute jcmd.
C:\>jcmd 17216 sun.tools.jcmd.JCmd 4544 org.apache.chemistry.opencmis.workbench.Workbench 15308 8956 HelloWorld
As
you see ‘HelloWorld’ application is running on port 8956.
C:\>jcmd 8956 VM.native_memory detail
8956:
Native Memory Tracking:
Total: reserved=5656851KB, committed=443675KB
- Java Heap (reserved=4163584KB, committed=262144KB)
(mmap: reserved=4163584KB, committed=262144KB)
- Class (reserved=1061996KB, committed=10092KB)
(classes #402)
(malloc=5228KB #146)
(mmap: reserved=1056768KB, committed=4864KB)
- Thread (reserved=16451KB, committed=16451KB)
(thread #17)
(stack: reserved=16384KB, committed=16384KB)
(malloc=48KB #87)
(arena=19KB #32)
- Code (reserved=249635KB, committed=2571KB)
(malloc=35KB #306)
(mmap: reserved=249600KB, committed=2536KB)
- GC (reserved=158027KB, committed=145259KB)
(malloc=5771KB #117)
(mmap: reserved=152256KB, committed=139488KB)
- Compiler (reserved=132KB, committed=132KB)
(malloc=2KB #23)
(arena=131KB #3)
- Internal (reserved=5381KB, committed=5381KB)
(malloc=5317KB #1343)
(mmap: reserved=64KB, committed=64KB)
- Symbol (reserved=1356KB, committed=1356KB)
(malloc=900KB #68)
(arena=456KB #1)
- Native Memory Tracking (reserved=112KB, committed=112KB)
(malloc=63KB #997)
(tracking overhead=49KB)
- Arena Chunk (reserved=175KB, committed=175KB)
(malloc=175KB)
Virtual memory map:
[0x0000000004240000 - 0x0000000004340000] reserved and committed 1024KB for Thread Stack from
[0x000000006ce002f8]
[0x000000006cd1e51a]
[0x000000006cd06995]
[0x00007ff6fc1b2722]
[0x0000000004470000 - 0x0000000004480000] reserved and committed 64KB for Internal from
[0x000000006ce3914e]
[0x000000006ce5f045]
[0x000000006ce5f154]
[0x000000006cde2675]
[0x0000000004480000 - 0x00000000044d0000] reserved 320KB for GC from
[0x000000006cddf247]
[0x000000006ce0a5c2]
[0x000000006ce0ac4a]
[0x000000006cfbea66]
[0x0000000004480000 - 0x00000000044d0000] committed 320KB from
[0x000000006cddf4e0]
[0x000000006cfc572a]
[0x000000006cfbeacc]
[0x000000006cfc00a0]
[0x00000000044f0000 - 0x00000000134f0000] reserved 245760KB for Code from
[0x000000006cddf247]
[0x000000006ce0a5c2]
[0x000000006ce0ad2f]
[0x000000006cca148f]
[0x00000000044f0000 - 0x0000000004760000] committed 2496KB from
[0x000000006cddf4e0]
[0x000000006ce0a98d]
[0x000000006ce0af1b]
[0x000000006cca14bf]
[0x00000000134f0000 - 0x00000000138b0000] reserved 3840KB for Code from
[0x000000006cddf247]
[0x000000006ce0a5c2]
[0x000000006ce0ac00]
[0x000000006cca155e]
[0x00000000134f0000 - 0x00000000134fa000] committed 40KB from
[0x000000006cddf4e0]
[0x000000006ce0a98d]
[0x000000006ce0af1b]
[0x000000006cca1597]
[0x00000000138b0000 - 0x00000000140b0000] reserved 8192KB for GC from
[0x000000006cddf247]
[0x000000006ce0a5c2]
[0x000000006ce0ac4a]
[0x000000006cc9322c]
[0x00000000138b0000 - 0x0000000013906000] committed 344KB from
[0x000000006cddf611]
[0x000000006cc935f4]
[0x000000006cfb269a]
[0x000000006cfbc056]
[0x0000000013dfb000 - 0x0000000013e26000] committed 172KB from
[0x000000006cddf611]
[0x000000006cc935f4]
[0x000000006cfb269a]
[0x000000006cfc68df]
[0x00000000140a1000 - 0x00000000140a2000] committed 4KB from
[0x000000006cddf611]
[0x000000006cc932a2]
[0x000000006cfb4c9c]
[0x000000006ccb3876]
[0x00000000140b0000 - 0x0000000014600000] reserved 5440KB for GC from
[0x000000006cddf247]
[0x000000006ce0a5c2]
[0x000000006ce0ac00]
[0x000000006cfb3ef1]
[0x00000000140b0000 - 0x0000000014106000] committed 344KB from
[0x000000006cddf4e0]
[0x000000006cfc572a]
[0x000000006cfb4034]
[0x000000006cfbc19c]
[0x0000000014600000 - 0x0000000014700000] reserved and committed 1024KB for Thread Stack from
[0x000000006ce002f8]
[0x000000006cfb3b7f]
[0x000000006ce5d40a]
[0x000000006dc71d9f]
[0x0000000014700000 - 0x0000000014800000] reserved and committed 1024KB for Thread Stack from
[0x000000006ce002f8]
[0x000000006cfb3b7f]
[0x000000006ce5d40a]
[0x000000006dc71d9f]
[0x0000000014800000 - 0x0000000014900000] reserved and committed 1024KB for Thread Stack from
[0x000000006ce002f8]
[0x000000006cfb3b7f]
[0x000000006ce5d40a]
[0x000000006dc71d9f]
[0x0000000014900000 - 0x0000000014a00000] reserved and committed 1024KB for Thread Stack from
[0x000000006ce002f8]
[0x000000006cfb3b7f]
[0x000000006ce5d40a]
[0x000000006dc71d9f]
[0x0000000014a00000 - 0x000000001c910000] reserved 130112KB for GC from
[0x000000006cddf247]
[0x000000006ce0a5c2]
[0x000000006ce0ac4a]
[0x000000006cfb599b]
[0x0000000014a00000 - 0x000000001c910000] committed 130112KB from
[0x000000006cddf4e0]
[0x000000006cfc572a]
[0x000000006cfb5a04]
[0x000000006cfc01be]
[0x000000001c910000 - 0x000000001d110000] reserved 8192KB for GC from
[0x000000006cddf247]
[0x000000006ce0a5c2]
[0x000000006ce0ac4a]
[0x000000006cfbea66]
[0x000000001c910000 - 0x000000001d110000] committed 8192KB from
[0x000000006cddf4e0]
[0x000000006cfc572a]
[0x000000006cfbeacc]
[0x000000006cfc00ca]
[0x000000001d110000 - 0x000000001d910000] reserved 8192KB for Class from
[0x000000006cddf247]
[0x000000006ce0a5c2]
[0x000000006ce0ac4a]
[0x000000006cca55ec]
[0x000000001d110000 - 0x000000001d550000] committed 4352KB from
[0x000000006cddf4e0]
[0x000000006ce0a98d]
[0x000000006cca34df]
[0x000000006cca3632]
[0x000000001eb10000 - 0x000000001ec10000] reserved and committed 1024KB for Thread Stack from
[0x000000006ce002f8]
[0x000000006ce0c2ba]
[0x000000006ce5d40a]
[0x000000006dc71d9f]
[0x000000001ec10000 - 0x000000001ed10000] reserved and committed 1024KB for Thread Stack from
[0x000000006ce002f8]
[0x000000006ce06423]
[0x000000006ce5d40a]
[0x000000006dc71d9f]
[0x000000001ed10000 - 0x000000001ee10000] reserved and committed 1024KB for Thread Stack from
[0x000000006ce002f8]
[0x000000006ce06423]
[0x000000006ce5d40a]
[0x000000006dc71d9f]
[0x000000001ef00000 - 0x000000001f000000] reserved and committed 1024KB for Thread Stack from
[0x000000006ce002f8]
[0x000000006ce06423]
[0x000000006ce5d40a]
[0x000000006dc71d9f]
[0x000000001f000000 - 0x000000001f100000] reserved and committed 1024KB for Thread Stack from
[0x000000006ce002f8]
[0x000000006ce0dcbe]
[0x000000006ce05adf]
[0x000000006ce5d40a]
[0x000000001f100000 - 0x000000001f200000] reserved and committed 1024KB for Thread Stack from
[0x000000006ce002f8]
[0x000000006ce06423]
[0x000000006ce5d40a]
[0x000000006dc71d9f]
[0x000000001f200000 - 0x000000001f300000] reserved and committed 1024KB for Thread Stack from
[0x000000006ce002f8]
[0x000000006ce06423]
[0x000000006ce5d40a]
[0x000000006dc71d9f]
[0x000000001f300000 - 0x000000001f400000] reserved and committed 1024KB for Thread Stack from
[0x000000006ce002f8]
[0x000000006ce06423]
[0x000000006ce5d40a]
[0x000000006dc71d9f]
[0x000000001f800000 - 0x000000001f900000] reserved and committed 1024KB for Thread Stack from
[0x000000006ce002f8]
[0x000000006ce06423]
[0x000000006ce5d40a]
[0x000000006dc71d9f]
[0x000000001f900000 - 0x000000001fa00000] reserved and committed 1024KB for Thread Stack from
[0x000000006ce002f8]
[0x000000006ce01108]
[0x000000006ce5d40a]
[0x000000006dc71d9f]
[0x000000001fa00000 - 0x000000001fb00000] reserved and committed 1024KB for Thread Stack from
[0x000000006ce002f8]
[0x000000006ce06423]
[0x000000006ce5d40a]
[0x000000006dc71d9f]
[0x00000006c1e00000 - 0x00000007c0000000] reserved 4163584KB for Java Heap from
[0x000000006cddf397]
[0x000000006ce0a59a]
[0x000000006ce0acd8]
[0x000000006ccb274b]
[0x00000006c1e00000 - 0x00000006cc900000] committed 175104KB from
[0x000000006cddf4e0]
[0x000000006cfc572a]
[0x000000006cfbc6b0]
[0x000000006cfb0929]
[0x000000076b500000 - 0x0000000770a00000] committed 87040KB from
[0x000000006cddf4e0]
[0x000000006cfc572a]
[0x000000006cfc5eb7]
[0x000000006cfc6c50]
[0x00000007c0000000 - 0x0000000800000000] reserved 1048576KB for Class from
[0x000000006cddf397]
[0x000000006ce0a59a]
[0x000000006ce0ac4a]
[0x000000006cca5b8b]
[0x00000007c0000000 - 0x00000007c0080000] committed 512KB from
[0x000000006cddf4e0]
[0x000000006ce0a98d]
[0x000000006cca34df]
[0x000000006cca3632]
Details:
[0x000000006ce3914e]
[0x000000006cbc15c0]
[0x000000006cfc17c2]
[0x000000006cfc215f]
(malloc=5120KB #5)
[0x000000006ce3914e]
[0x000000006cbc15c0]
[0x000000006ce353e2]
[0x000000006cfb86aa]
(malloc=5120KB #5)
[0x000000006ce3914e]
[0x000000006cbc15c0]
[0x000000006cf6a202]
[0x000000006cfb8512]
(malloc=5120KB #5)
[0x000000006ce3914e]
[0x000000006cbc15c0]
[0x000000006cfb8204]
[0x000000006cfb8527]
(malloc=640KB #5)
[0x000000006ce3914e]
[0x000000006cc2679a]
[0x000000006ccb3da0]
[0x000000006cdd35b7]
(malloc=469KB #1)
[0x000000006ce3914e]
[0x000000006cc8d979]
[0x000000006cc8dbe7]
[0x000000006cc8e06c]
(malloc=384KB #12)
[0x000000006cc8db57]
[0x000000006cc8e123]
[0x000000006cc364e3]
[0x000000006ccb3d7a]
(malloc=360KB #1)
[0x000000006ce3914e]
[0x000000006ce3847a]
[0x000000006ce3867e]
[0x000000006cc371e5]
(malloc=216KB #27)
[0x000000006ce3914e]
[0x000000006cc2679a]
[0x000000006ccb3bcc]
[0x000000006ccb3d7a]
(malloc=156KB #1)
[0x000000006ce19e00]
[0x000000006ce19e60]
[0x000000006ce1a120]
(malloc=60KB #956)
[0x000000006cc61da5]
[0x000000006ccb613c]
[0x000000006ccb77d5]
[0x000000006cc14d84]
(malloc=47KB #402)
[0x000000006ce3914e]
[0x000000006ce382dd]
[0x000000006ce3838e]
[0x000000006cc3304a]
(malloc=32KB #1)
[0x000000006ce3914e]
[0x000000006ce3847a]
[0x000000006ce3867e]
[0x000000006cc36fca]
(malloc=32KB #4)
[0x000000006ce3914e]
[0x000000006ce3847a]
[0x000000006ce3867e]
[0x000000006cc375c1]
(malloc=24KB #3)
[0x000000006ce3914e]
[0x000000006cdfce27]
[0x000000006cdfd09f]
[0x000000006cdfdf06]
(malloc=22KB #1)
[0x000000006ce3914e]
[0x000000006ce382dd]
[0x000000006ce3838e]
[0x000000006cc26c14]
(malloc=16KB #1)
[0x000000006ce3914e]
[0x000000006ce382dd]
[0x000000006ce3838e]
[0x000000006cc27a7e]
(malloc=16KB #1)
[0x000000006ce3914e]
[0x000000006cbc1caa]
[0x000000006cc26d6f]
[0x000000006cc3edb7]
(malloc=16KB #1)
[0x000000006ce3914e]
[0x000000006cc8d979]
[0x000000006cc8dbe7]
[0x000000006cc8e123]
(malloc=14KB #17)
[0x000000006cc61da5]
[0x000000006ce5591a]
[0x000000006ce0dcc3]
[0x000000006ce05adf]
(malloc=13KB #4)
[0x000000006ce3914e]
[0x000000006cc8d979]
[0x000000006cc8e202]
[0x000000006ce0047e]
(malloc=12KB #12)
[0x000000006cc61da5]
[0x000000006cc7061b]
[0x000000006cc70fcb]
[0x000000006ccb3832]
(malloc=10KB #1)
[0x000000006ce3914e]
[0x000000006cdfeaa0]
[0x000000006cfb3646]
[0x000000006cfb38ec]
(malloc=10KB #4)
[0x000000006ce3914e]
[0x000000006cbc15c0]
[0x000000006cc4e15f]
[0x000000006cc4e77e]
(malloc=10KB #53)
[0x000000006ce3914e]
[0x000000006cdfeaa0]
[0x000000006cd41e27]
[0x0000000004508c67]
(malloc=9KB #3)
[0x000000006ce3914e]
[0x000000006cbc1caa]
[0x000000006cc26d38]
[0x000000006cc3edb7]
(malloc=8KB #1)
[0x000000006ce3914e]
[0x000000006cbc1caa]
[0x000000006cc33384]
[0x000000006cc3ede3]
(malloc=8KB #1)
[0x000000006ce3914e]
[0x000000006cbc15c0]
[0x000000006cc4e15f]
[0x000000006cc5c0b1]
(malloc=7KB #18)
[0x000000006ce3914e]
[0x000000006cdfeaa0]
[0x000000006cc626bf]
[0x000000006cc636df]
(malloc=6KB #2)
[0x000000006ce3914e]
[0x000000006ce3876a]
[0x000000006cdecc60]
[0x000000006cdeda1c]
(malloc=4KB #1)
[0x000000006ce3914e]
[0x000000006ce3876a]
[0x000000006cdecc60]
[0x000000006cdeccae]
(malloc=4KB #1)
[0x000000006cde0fe9]
[0x000000006cde10c7]
[0x000000006ce00638]
[0x000000006ce04018]
(malloc=3KB #9)
[0x000000006cde0fe9]
[0x000000006cde10c7]
[0x000000006ce00647]
[0x000000006ce04018]
(malloc=3KB #9)
[0x000000006cc50c75]
[0x000000006cdedc4a]
[0x000000006cced87a]
[0x000000006ccee348]
(malloc=3KB #144)
[0x000000006cde0fe9]
[0x000000006cde10c7]
[0x000000006ce00656]
[0x000000006ce04018]
(malloc=3KB #9)
[0x000000006cde0fe9]
[0x000000006cde10c7]
[0x000000006ce00665]
[0x000000006ce04018]
(malloc=3KB #9)
[0x000000006ce3914e]
[0x000000006cbc15c0]
[0x000000006cd65818]
[0x000000006cde1a58]
(malloc=3KB #1)
[0x000000006ce3914e]
[0x000000006cdfeaa0]
[0x000000006cc626bf]
[0x000000006cc6379f]
(malloc=3KB #1)
[0x000000006ce3914e]
[0x000000006cbc15c0]
[0x000000006cde13ae]
[0x000000006cde2201]
(malloc=3KB #102)
[0x000000006ce3914e]
[0x000000006cdfeaa0]
[0x000000006cd1e4f2]
[0x000000006cd06995]
(malloc=3KB #1)
[0x000000006ce3914e]
[0x000000006cdfeaa0]
[0x000000006cddf8b8]
[0x000000006ce06207]
(malloc=3KB #1)
[0x000000006ce3914e]
[0x000000006cdfeaa0]
[0x000000006cdebe0d]
[0x000000006ce1ccb1]
(malloc=3KB #1)
[0x000000006ce3914e]
[0x000000006cdfeaa0]
[0x000000006ce0e0a4]
[0x000000006ce0622c]
(malloc=3KB #1)
[0x000000006cc61da5]
[0x000000006cdd6e00]
[0x000000006cdd4a7a]
[0x000000006cdd53df]
(malloc=3KB #9)
[0x000000006cc61da5]
[0x000000006cc63b7b]
[0x000000006ce36dd1]
[0x000000006cdd34d3]
(malloc=3KB #1)
[0x000000006cc61da5]
[0x000000006cc63b7b]
[0x000000006cc6551a]
[0x000000006cdd361f]
(malloc=3KB #1)
[0x000000006cc61da5]
[0x000000006cc63b7b]
[0x000000006ce36e0c]
[0x000000006cdd34d3]
(malloc=3KB #1)
[0x000000006cc61da5]
[0x000000006cc63b7b]
[0x000000006ce36e47]
[0x000000006cdd34d3]
(malloc=3KB #1)
[0x000000006cc61da5]
[0x000000006cc63b7b]
[0x000000006ce36e82]
[0x000000006cdd34d3]
(malloc=3KB #1)
[0x000000006ce3914e]
[0x000000006cdfeaa0]
[0x000000006ce0b518]
[0x000000006ce05d8f]
(malloc=2KB #1)
[0x000000006ce3914e]
[0x000000006cdfeaa0]
[0x000000006ce03f00]
[0x000000006ce0639b]
(malloc=2KB #1)
[0x000000006cc61da5]
[0x000000006cdd6e00]
[0x000000006ce06492]
[0x000000006ce5d40a]
(malloc=2KB #8)
[0x000000006ce3914e]
[0x000000006cbc15c0]
[0x000000006ccc96b7]
[0x000000006cc5d72b]
(malloc=2KB #7)
[0x000000006ce3914e]
[0x000000006cdece4a]
[0x000000006cded9c1]
[0x000000006cdedab5]
(malloc=2KB #1)
[0x000000006ce3914e]
[0x000000006ce382dd]
[0x000000006cc2134c]
[0x000000006cbc1b58]
(malloc=2KB #5)
[0x000000006ce3914e]
[0x000000006cbc15c0]
[0x000000006cfc220c]
[0x000000006cfc23f6]
(malloc=2KB #1)
[0x000000006ce3914e]
[0x000000006cbc15c0]
[0x000000006cde13ae]
[0x000000006cde2331]
(malloc=2KB #87)
[0x000000006ce3914e]
[0x000000006cbc15c0]
[0x000000006cd64797]
[0x000000006ce5a23e]
(malloc=2KB #1)
[0x000000006ce3914e]
[0x000000006cbc15c0]
[0x000000006ce00500]
[0x000000006ce04018]
(malloc=2KB #9)
[0x000000006ce3914e]
[0x000000006cc8d979]
[0x000000006cc8e202]
[0x000000006cbe690d]
(malloc=2KB #2)
[0x000000006ce3914e]
[0x000000006cc8d979]
[0x000000006cc8e202]
[0x000000006cbed702]
(malloc=2KB #2)
[0x000000006ce3914e]
[0x000000006cbc15c0]
[0x000000006cc365b2]
[0x000000006cc36faa]
(malloc=2KB #25)
[0x000000006cc8d88d]
[0x000000006ce29563]
[0x000000006ce29c52]
[0x000000006ce29dee]
(malloc=2KB #30)
[0x000000006cde0fe9]
[0x000000006cde10c7]
[0x000000006ce00638]
[0x000000006ce03dbe]
(malloc=2KB #5)
[0x000000006cde0fe9]
[0x000000006cde10c7]
[0x000000006ce00647]
[0x000000006ce03dbe]
(malloc=2KB #5)
[0x000000006cde0fe9]
[0x000000006cde10c7]
[0x000000006ce00656]
[0x000000006ce03dbe]
(malloc=2KB #5)
[0x000000006cde0fe9]
[0x000000006cde10c7]
[0x000000006ce00665]
[0x000000006ce03dbe]
(malloc=2KB #5)
[0x000000006cbc1e35]
[0x000000006cc22aed]
[0x000000006cc22df9]
[0x000000006ccb7aab]
(malloc=2KB #6)
[0x000000006cc8d88d]
[0x000000006ce2a32a]
[0x000000006ce33d1c]
[0x000000006cdde9d6]
(malloc=2KB #17)
[0x000000006ce3914e]
[0x000000006cbc15c0]
[0x000000006ce00500]
[0x000000006ce03dbe]
(malloc=1KB #5)
[0x000000006ce3914e]
[0x000000006cc2679a]
[0x000000006cc26c84]
[0x000000006cc3ee6d]
(malloc=1KB #1)
[0x000000006cc94395]
[0x000000006cfb8a0f]
[0x000000006cfb4127]
[0x000000006ccb4e13]
(malloc=1KB #4)
[0x000000006cddf397]
[0x000000006ce0a59a]
[0x000000006ce0acd8]
[0x000000006ccb274b]
(reserved=4163584KB, committed=262144KB)
[0x000000006cddf397]
[0x000000006ce0a59a]
[0x000000006ce0ac4a]
[0x000000006cca5b8b]
(reserved=1048576KB, committed=512KB)
[0x000000006cddf247]
[0x000000006ce0a5c2]
[0x000000006ce0ad2f]
[0x000000006cca148f]
(reserved=245760KB, committed=2496KB)
[0x000000006cddf247]
[0x000000006ce0a5c2]
[0x000000006ce0ac4a]
[0x000000006cfb599b]
(reserved=130112KB, committed=130112KB)
[0x000000006cddf247]
[0x000000006ce0a5c2]
[0x000000006ce0ac4a]
[0x000000006cfbea66]
(reserved=8512KB, committed=8512KB)
[0x000000006ce002f8]
[0x000000006ce06423]
[0x000000006ce5d40a]
[0x000000006dc71d9f]
(reserved=8192KB, committed=8192KB)
[0x000000006cddf247]
[0x000000006ce0a5c2]
[0x000000006ce0ac4a]
[0x000000006cca55ec]
(reserved=8192KB, committed=4352KB)
[0x000000006cddf247]
[0x000000006ce0a5c2]
[0x000000006ce0ac4a]
[0x000000006cc9322c]
(reserved=8192KB, committed=520KB)
[0x000000006cddf247]
[0x000000006ce0a5c2]
[0x000000006ce0ac00]
[0x000000006cfb3ef1]
(reserved=5440KB, committed=344KB)
[0x000000006ce002f8]
[0x000000006cfb3b7f]
[0x000000006ce5d40a]
[0x000000006dc71d9f]
(reserved=4096KB, committed=4096KB)
[0x000000006cddf247]
[0x000000006ce0a5c2]
[0x000000006ce0ac00]
[0x000000006cca155e]
(reserved=3840KB, committed=40KB)
[0x000000006ce002f8]
[0x000000006ce0dcbe]
[0x000000006ce05adf]
[0x000000006ce5d40a]
(reserved=1024KB, committed=1024KB)
[0x000000006ce002f8]
[0x000000006ce0c2ba]
[0x000000006ce5d40a]
[0x000000006dc71d9f]
(reserved=1024KB, committed=1024KB)
[0x000000006ce002f8]
[0x000000006cd1e51a]
[0x000000006cd06995]
[0x00007ff6fc1b2722]
(reserved=1024KB, committed=1024KB)
[0x000000006ce002f8]
[0x000000006ce01108]
[0x000000006ce5d40a]
[0x000000006dc71d9f]
(reserved=1024KB, committed=1024KB)
[0x000000006ce3914e]
[0x000000006ce5f045]
[0x000000006ce5f154]
[0x000000006cde2675]
(reserved=64KB, committed=64KB)

No comments:
Post a Comment