2006-07-16 01:46:36 +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.
|
|
|
|
*/
|
|
|
|
|
2004-06-22 06:37:04 +08:00
|
|
|
#ifndef SIGAR_OS_H
|
|
|
|
#define SIGAR_OS_H
|
|
|
|
|
2006-08-05 08:54:53 +08:00
|
|
|
#if defined(__ia64) && !defined(__ia64__)
|
|
|
|
#define __ia64__
|
|
|
|
#endif
|
|
|
|
|
2006-08-05 10:00:39 +08:00
|
|
|
#ifdef __ia64__
|
|
|
|
#ifndef _LP64
|
|
|
|
#define _LP64
|
|
|
|
#endif
|
|
|
|
#define _PSTAT64
|
|
|
|
#endif
|
|
|
|
|
2004-06-22 06:37:04 +08:00
|
|
|
#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;
|
2004-12-08 00:53:34 +08:00
|
|
|
|
|
|
|
sigar_cache_t *fsdev;
|
2005-05-13 10:49:51 +08:00
|
|
|
int mib;
|
2004-06-22 06:37:04 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
int hpux_get_mib_ifentry(int ppa, mib_ifEntry *mib);
|
|
|
|
|
|
|
|
#endif /* SIGAR_OS_H */
|