8186982: [aix] Garbage output for CPU info in hs-err file
authorstuefe
Thu, 31 Aug 2017 18:34:40 +0200
changeset 47102 2f0905582ea4
parent 47101 f5ec4aa2309d
child 47104 6bdc0c9c44af
8186982: [aix] Garbage output for CPU info in hs-err file Reviewed-by: goetz, simonis Contributed-by: arno.zeller@sap.com
hotspot/src/os/aix/vm/os_aix.cpp
--- a/hotspot/src/os/aix/vm/os_aix.cpp	Thu Aug 31 16:29:58 2017 +0200
+++ b/hotspot/src/os/aix/vm/os_aix.cpp	Thu Aug 31 18:34:40 2017 +0200
@@ -1437,12 +1437,7 @@
 }
 
 void os::pd_print_cpu_info(outputStream* st, char* buf, size_t buflen) {
-  st->print("CPU:");
-  st->print("total %d", os::processor_count());
-  // It's not safe to query number of active processors after crash.
-  // st->print("(active %d)", os::active_processor_count());
-  st->print(" %s", VM_Version::features());
-  st->cr();
+  // Nothing to do beyond what os::print_cpu_info() does.
 }
 
 static void print_signal_handler(outputStream* st, int sig,