8186982: [aix] Garbage output for CPU info in hs-err file
Reviewed-by: goetz, simonis
Contributed-by: arno.zeller@sap.com
--- 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,