2007-05-19 11:40:12 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) [2004, 2005, 2006], Hyperic, Inc.
|
|
|
|
* This file is part of SIGAR.
|
|
|
|
*
|
|
|
|
* SIGAR is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms version 2 of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation. This program 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 General Public License for more
|
|
|
|
* details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SIGAR_FORMAT_H
|
|
|
|
#define SIGAR_FORMAT_H
|
|
|
|
|
2008-03-12 14:20:43 +08:00
|
|
|
typedef struct {
|
|
|
|
double user;
|
|
|
|
double sys;
|
|
|
|
double nice;
|
|
|
|
double idle;
|
|
|
|
double wait;
|
2008-05-24 23:12:06 +08:00
|
|
|
double irq;
|
|
|
|
double soft_irq;
|
|
|
|
double steal;
|
2008-03-12 14:20:43 +08:00
|
|
|
double combined;
|
|
|
|
} sigar_cpu_perc_t;
|
|
|
|
|
|
|
|
SIGAR_DECLARE(int) sigar_cpu_perc_calculate(sigar_cpu_t *prev,
|
|
|
|
sigar_cpu_t *curr,
|
|
|
|
sigar_cpu_perc_t *perc);
|
|
|
|
|
2007-05-19 11:40:12 +08:00
|
|
|
SIGAR_DECLARE(int) sigar_uptime_string(sigar_t *sigar,
|
|
|
|
sigar_uptime_t *uptime,
|
|
|
|
char *buffer,
|
|
|
|
int buflen);
|
|
|
|
|
|
|
|
SIGAR_DECLARE(char *) sigar_format_size(sigar_uint64_t size, char *buf);
|
|
|
|
|
2007-05-19 11:50:27 +08:00
|
|
|
SIGAR_DECLARE(int) sigar_net_address_equals(sigar_net_address_t *addr1,
|
|
|
|
sigar_net_address_t *addr2);
|
|
|
|
|
|
|
|
SIGAR_DECLARE(int) sigar_net_address_to_string(sigar_t *sigar,
|
|
|
|
sigar_net_address_t *address,
|
|
|
|
char *addr_str);
|
|
|
|
|
|
|
|
SIGAR_DECLARE(sigar_uint32_t) sigar_net_address_hash(sigar_net_address_t *address);
|
|
|
|
|
|
|
|
|
2007-05-19 11:40:12 +08:00
|
|
|
SIGAR_DECLARE(const char *)sigar_net_connection_type_get(int type);
|
|
|
|
|
|
|
|
SIGAR_DECLARE(const char *)sigar_net_connection_state_get(int state);
|
|
|
|
|
2007-09-03 11:00:22 +08:00
|
|
|
SIGAR_DECLARE(char *) sigar_net_interface_flags_to_string(sigar_uint64_t flags, char *buf);
|
|
|
|
|
2007-09-17 02:32:56 +08:00
|
|
|
SIGAR_DECLARE(char *)sigar_net_services_name_get(sigar_t *sigar,
|
|
|
|
int protocol, unsigned long port);
|
|
|
|
|
2007-05-19 11:40:12 +08:00
|
|
|
#endif
|
|
|
|
|