1
0
Files
irix-657m-src/eoe/cmd/rtmon/rtmon_client/util.h
2022-09-29 17:59:04 +03:00

19 lines
485 B
C

#ifndef _UTIL_
#define _UTIL_
#include <sys/types.h>
#include <sys/rtmon.h>
#define RTMON_PAR \
RTMON_SIGNAL|RTMON_SYSCALL|RTMON_TASK|RTMON_DISK|RTMON_NETSCHED|RTMON_NETFLOW
#define MAXCPU 128 /* max number of cpus we can handle */
extern int numb_processors;
extern const char* appName;
extern const char* hostname;
extern void fatal(const char* fmt, ...);
extern void parse_proc_str(const char*, uint64_t[]);
extern uint64_t parse_event_str(const char*);
#endif /* _UTIL_ */