2015-06-20 03:13:02 +05:30
|
|
|
/*
|
|
|
|
* libprocps - Library to read proc filesystem
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
#ifndef PROC_READ_STAT_H
|
|
|
|
#define PROC_READ_STAT_H
|
|
|
|
|
|
|
|
#include <proc/procps.h>
|
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
|
|
|
enum procps_cpu_item {
|
|
|
|
PROCPS_CPU_USER,
|
|
|
|
PROCPS_CPU_NICE,
|
|
|
|
PROCPS_CPU_SYSTEM,
|
|
|
|
PROCPS_CPU_IDLE,
|
|
|
|
PROCPS_CPU_IOWAIT,
|
|
|
|
PROCPS_CPU_IRQ,
|
|
|
|
PROCPS_CPU_SIRQ,
|
|
|
|
PROCPS_CPU_STOLEN,
|
|
|
|
PROCPS_CPU_GUEST,
|
|
|
|
PROCPS_CPU_GNICE
|
|
|
|
};
|
|
|
|
|
|
|
|
enum procps_stat_item {
|
2015-06-23 17:52:50 +05:30
|
|
|
PROCPS_STAT_INTR,
|
|
|
|
PROCPS_STAT_CTXT,
|
2015-06-20 03:13:02 +05:30
|
|
|
PROCPS_STAT_BTIME,
|
|
|
|
PROCPS_STAT_PROCS,
|
|
|
|
PROCPS_STAT_PROCS_BLK,
|
|
|
|
PROCPS_STAT_PROCS_RUN
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef unsigned long long jiff;
|
2015-06-28 10:30:00 +05:30
|
|
|
|
2015-06-28 10:30:00 +05:30
|
|
|
struct procps_cpu_result {
|
|
|
|
enum procps_cpu_item item;
|
|
|
|
jiff result;
|
|
|
|
struct procps_cpu_result *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct procps_sys_result {
|
|
|
|
enum procps_stat_item item;
|
|
|
|
int result;
|
|
|
|
struct procps_sys_result *next;
|
|
|
|
};
|
|
|
|
|
2015-06-28 10:30:00 +05:30
|
|
|
struct procps_statinfo;
|
|
|
|
|
|
|
|
int procps_stat_new (struct procps_statinfo **info);
|
|
|
|
int procps_stat_read (struct procps_statinfo *info, const int cpu_only);
|
|
|
|
|
|
|
|
struct procps_statinfo *procps_stat_ref (struct procps_statinfo *info);
|
|
|
|
struct procps_statinfo *procps_stat_unref (struct procps_statinfo *info);
|
|
|
|
|
|
|
|
jiff procps_stat_get_cpu (struct procps_statinfo *info, enum procps_cpu_item item);
|
2015-06-28 10:30:00 +05:30
|
|
|
int procps_stat_get_cpu_chain (struct procps_statinfo *info, struct procps_cpu_result *item);
|
|
|
|
|
2015-06-28 10:30:00 +05:30
|
|
|
unsigned int procps_stat_get_sys (struct procps_statinfo *info, enum procps_stat_item item);
|
2015-06-28 10:30:00 +05:30
|
|
|
int procps_stat_get_sys_chain (struct procps_statinfo *info, struct procps_sys_result *item);
|
2015-06-28 10:30:00 +05:30
|
|
|
|
2015-06-20 03:13:02 +05:30
|
|
|
__END_DECLS
|
|
|
|
#endif
|