< prev index next >

src/hotspot/os/aix/libperfstat_aix.hpp

Print this page
rev 48720 : 8196487: AIX: os::get_summary_cpu_info does not need to call into libperfstat

*** 1,7 **** /* ! * Copyright (c) 2012, 2016 SAP SE. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2012, 2018 SAP SE. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 940,950 **** char description[IDENTIFIER_LENGTH]; // processor description (type/official name) u_longlong_t processorHZ; // processor speed in Hz int ncpus; // number of active logical processors double loadavg[3]; // (1<<SBITS) times the average number of runnables processes during the last 1, 5 and 15 minutes. // To calculate the load average, divide the numbers by (1<<SBITS). SBITS is defined in <sys/proc.h>. - char version[20]; // processor version from _system_configuration (sys/systemcfg.h) unsigned long long user_clock_ticks; // raw total number of clock ticks spent in user mode unsigned long long sys_clock_ticks; // raw total number of clock ticks spent in system mode unsigned long long idle_clock_ticks; // raw total number of clock ticks spent idle unsigned long long wait_clock_ticks; // raw total number of clock ticks spent waiting for I/O }; --- 940,949 ----
*** 963,971 **** }; static bool get_partitioninfo(partitioninfo_t* ppi); static bool get_cpuinfo(cpuinfo_t* pci); static bool get_wparinfo(wparinfo_t* pwi); - }; #endif // OS_AIX_VM_LIBPERFSTAT_AIX_HPP --- 962,969 ----
< prev index next >