sigar/src/os/aix/sigar_os.h

67 lines
1.4 KiB
C
Raw Normal View History

2004-06-22 06:37:04 +08:00
#ifndef SIGAR_OS_H
#define SIGAR_OS_H
#include <fcntl.h>
#include <errno.h>
#include <dlfcn.h>
#include <procinfo.h>
#include "libperfstat.h"
2004-06-22 06:37:04 +08:00
enum {
KOFFSET_LOADAVG,
KOFFSET_VAR,
KOFFSET_SYSINFO,
KOFFSET_IFNET,
KOFFSET_VMINFO,
KOFFSET_CPUINFO,
KOFFSET_MAX
};
typedef struct {
time_t mtime;
int num;
char **devs;
} swaps_t;
typedef int (*vminfo_func_t) (void *, int, int);
typedef int (*proc_fd_func_t) (sigar_t *, sigar_pid_t, sigar_proc_fd_t *);
2004-07-20 03:49:32 +08:00
typedef int (*perfstat_cpu_total_func_t)(perfstat_cpu_total_t *, int);
2004-07-20 03:44:01 +08:00
typedef int (*perfstat_cpu_func_t)(perfstat_id_t *,
2004-07-20 03:44:01 +08:00
perfstat_cpu_t *,
int, int);
2004-06-22 06:37:04 +08:00
struct sigar_t {
SIGAR_T_BASE;
int kmem;
/* offsets for seeking on kmem */
long koffsets[KOFFSET_MAX];
vminfo_func_t getvminfo;
proc_fd_func_t getprocfd;
struct {
int avail;
2004-07-20 03:44:01 +08:00
perfstat_cpu_func_t cpu;
perfstat_cpu_total_func_t cpu_total;
void *handle;
} perfstat;
2004-06-22 06:37:04 +08:00
int pagesize;
swaps_t swaps;
time_t last_getprocs;
sigar_pid_t last_pid;
struct procsinfo *pinfo;
struct cpuinfo *cpuinfo;
int cpuinfo_size;
int cpu_mhz;
2004-07-03 07:02:04 +08:00
char model[128];
char self_path[SIGAR_PATH_MAX]; /* path to where libsigar.so lives */
int aix_version;
2004-06-22 06:37:04 +08:00
};
#define HAVE_STRERROR_R
#define SIGAR_EPERM_KMEM (SIGAR_OS_START_ERROR+1)
#endif /* SIGAR_OS_H */