author | minqi |
Mon, 24 Sep 2012 20:04:19 -0700 | |
changeset 13874 | a93c03275528 |
parent 13872 | bbee2239e884 (diff) |
parent 13873 | 7b72e3873785 (current diff) |
child 13875 | bb683b4a79ac |
--- a/hotspot/src/share/vm/services/memTracker.cpp Mon Sep 24 12:44:00 2012 -0700 +++ b/hotspot/src/share/vm/services/memTracker.cpp Mon Sep 24 20:04:19 2012 -0700 @@ -71,8 +71,13 @@ _tracking_level = NMT_off; if (strncmp(option_line, "=summary", 8) == 0) { _tracking_level = NMT_summary; - } else if (strncmp(option_line, "=detail", 8) == 0) { + } else if (strncmp(option_line, "=detail", 7) == 0) { _tracking_level = NMT_detail; + } else { + char msg[255]; + //+1 to remove the '=' character + jio_snprintf(msg, 255, "Unknown option given to XX:NativeMemoryTracking: %s", option_line+1); + vm_exit_during_initialization(msg, NULL); } }