Merge
authorjbachorik
Wed, 08 Apr 2015 08:07:47 +0000
changeset 30233 526072aec162
parent 30232 dc351997b749 (current diff)
parent 30231 501167dc42a2 (diff)
child 30234 aa6bfe87720b
Merge
--- a/hotspot/src/share/vm/runtime/arguments.cpp	Fri Apr 03 15:40:35 2015 +0200
+++ b/hotspot/src/share/vm/runtime/arguments.cpp	Wed Apr 08 08:07:47 2015 +0000
@@ -3714,8 +3714,8 @@
       CommandLineFlags::printFlags(tty, false);
       vm_exit(0);
     }
+    if (match_option(option, "-XX:NativeMemoryTracking", &tail)) {
 #if INCLUDE_NMT
-    if (match_option(option, "-XX:NativeMemoryTracking", &tail)) {
       // The launcher did not setup nmt environment variable properly.
       if (!MemTracker::check_launcher_nmt_support(tail)) {
         warning("Native Memory Tracking did not setup properly, using wrong launcher?");
@@ -3731,9 +3731,12 @@
         vm_exit_during_initialization("Syntax error, expecting -XX:NativeMemoryTracking=[off|summary|detail]", NULL);
       }
       continue;
-    }
+#else
+      jio_fprintf(defaultStream::error_stream(),
+        "Native Memory Tracking is not supported in this VM\n");
+      return JNI_ERR;
 #endif
-
+    }
 
 #ifndef PRODUCT
     if (match_option(option, "-XX:+PrintFlagsWithComments")) {