# HG changeset patch # User stuefe # Date 1504197280 -7200 # Node ID 2f0905582ea4307daba96915a74bcf317d66ed52 # Parent f5ec4aa2309d0941b217a0a5a85e422bf874788c 8186982: [aix] Garbage output for CPU info in hs-err file Reviewed-by: goetz, simonis Contributed-by: arno.zeller@sap.com diff -r f5ec4aa2309d -r 2f0905582ea4 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,