sigar/src/os/hpux/sigar_os.h

20 lines
353 B
C
Raw Normal View History

2004-06-22 06:37:04 +08:00
#ifndef SIGAR_OS_H
#define SIGAR_OS_H
#include <sys/pstat.h>
#include <sys/mib.h>
#include <stdlib.h>
#include <fcntl.h>
struct sigar_t {
SIGAR_T_BASE;
struct pst_static pstatic;
time_t last_getprocs;
sigar_pid_t last_pid;
struct pst_status *pinfo;
};
int hpux_get_mib_ifentry(int ppa, mib_ifEntry *mib);
#endif /* SIGAR_OS_H */