comparison src/share/vm/classfile/javaAssertions.cpp @ 6197:d2a62e0f25eb

6995781: Native Memory Tracking (Phase 1) 7151532: DCmd for hotspot native memory tracking Summary: Implementation of native memory tracking phase 1, which tracks VM native memory usage, and related DCmd Reviewed-by: acorn, coleenp, fparain
author zgu
date Thu, 28 Jun 2012 17:03:16 -0400
parents 1d1603768966
children da91efe96a93
comparison
equal deleted inserted replaced
6174:74533f63b116 6197:d2a62e0f25eb
56 56
57 // Copy the name. The storage needs to exist for the the lifetime of the vm; 57 // Copy the name. The storage needs to exist for the the lifetime of the vm;
58 // it is never freed, so will be leaked (along with other option strings - 58 // it is never freed, so will be leaked (along with other option strings -
59 // e.g., bootclasspath) if a process creates/destroys multiple VMs. 59 // e.g., bootclasspath) if a process creates/destroys multiple VMs.
60 int len = (int)strlen(name); 60 int len = (int)strlen(name);
61 char *name_copy = NEW_C_HEAP_ARRAY(char, len + 1); 61 char *name_copy = NEW_C_HEAP_ARRAY(char, len + 1, mtClass);
62 strcpy(name_copy, name); 62 strcpy(name_copy, name);
63 63
64 // Figure out which list the new item should go on. Names that end in "..." 64 // Figure out which list the new item should go on. Names that end in "..."
65 // go on the package tree list. 65 // go on the package tree list.
66 OptionList** head = &_classes; 66 OptionList** head = &_classes;