/* Define if packet count must precede host */
#define PING_PACKETS_FIRST 1
/* path to /proc/meminfo if name changes */
#define PROC_MEMINFO "/proc/meminfo"
/* Number of columns in ps command */
#define PS_COLS 9
/* Verbatim command to execute for ps in check_procs */
#define PS_COMMAND "/bin/ps axwo 'stat uid pid ppid vsz rss pcpu comm args'"
/* Format string for scanning ps output in check_procs */
#define PS_FORMAT "%s %d %d %d %d %d %f %s %n"
/* Whether the ps utility uses the "procetime" field */
/* #undef PS_USES_PROCETIME */
/* Variable list for sscanf of 'ps' output */
#define PS_VARLIST procstat,&procuid,&procpid,&procppid,&procvsz,&procrss,&procpcpu,procprog,&pos
/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
'ptrdiff_t'. */
#define PTRDIFF_T_SUFFIX
/* Forced workaround on redhat in spopen */
/* #undef REDHAT_SPOPEN_ERROR */
/* Define as the return type of signal handlers (`int' or `void'). */
#define RETSIGTYPE void
/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
'sig_atomic_t'. */
#define SIG_ATOMIC_T_SUFFIX
/* Define as the maximum value of type 'size_t', if the system doesn't define
it. */
/* #undef SIZE_MAX */
/* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
'size_t'. */
#define SIZE_T_SUFFIX u
/* Define type of socket size */
#define SOCKET_SIZE_TYPE int
/* path to ssh binary */
#define SSH_COMMAND "/usr/bin/ssh"
/* If using the C implementation of alloca, define if you know the
direction of stack growth for your system; otherwise it will be
automatically deduced at run-time.
STACK_DIRECTION > 0 => grows toward higher addresses
STACK_DIRECTION < 0 => grows toward lower addresses
STACK_DIRECTION = 0 => direction of growth unknown */
/* #undef STACK_DIRECTION */
/* Define if the block counts reported by statfs may be truncated to 2GB and
the correct values may be stored in the f_spare array. (SunOS 4.1.2, 4.1.3,
and 4.1.3_U1 are reported to have this problem. SunOS 4.1.1 seems not to be
affected.) */
/* #undef STATFS_TRUNCATES_BLOCK_COUNTS */
/* Define if there is no specific function for reading file systems usage
information and you have the <sys/filsys.h> header file. (SVR2) */
/* #undef STAT_READ_FILSYS */
/* Define if statfs takes 2 args and struct statfs has a field named f_bsize.
(4.3BSD, SunOS 4, HP-UX, AIX PS/2) */
#define STAT_STATFS2_BSIZE 1
/* Define if statfs takes 2 args and struct statfs has a field named f_fsize.
(4.4BSD, NetBSD) */
/* #undef STAT_STATFS2_FSIZE */
/* Define if statfs takes 2 args and the second argument has type struct
fs_data. (Ultrix) */
/* #undef STAT_STATFS2_FS_DATA */
/* Define if statfs takes 3 args. (DEC Alpha running OSF/1) */
/* #undef STAT_STATFS3_OSF1 */
/* Define if statfs takes 4 args. (SVR3, Dynix, Irix, Dolphin) */
/* #undef STAT_STATFS4 */
/* Define if there is a function named statvfs. (SVR4) */
/* #undef STAT_STATVFS */
/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1
/* Define to 1 if strerror_r returns char *. */
#define STRERROR_R_CHAR_P 1
/* Define to 1 on System V Release 4. */
/* #undef SVR4 */
/* Path to swap/swapinfo binary, with any args */
/* #undef SWAP_COMMAND */
=9= |