InterviewSolution
Saved Bookmarks
| 1. |
How to get prints of shared object memory maps or heap memory maps for a given process?(a) jmap(b) memorymap(c) memorypath(d) jvmmap |
|
Answer» Right choice is (a) jmap Explanation: We can use jmap as jmap -J-d64 -heap pid. |
|