summaryrefslogtreecommitdiff
path: root/agent/kernel.h
blob: 3c939fc9bf297f14711ed18a382e96e9a7ba563b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

#ifdef NETSNMP_CAN_USE_NLIST
extern void     init_kmem(const char *);
extern int      klookup(unsigned long, char *, int);
#define NETSNMP_KLOOKUP(x,y,z) klookup((unsigned long) x,y,z)
#else
#define NETSNMP_KLOOKUP(x,y,z) (0)
#endif

#if HAVE_KVM_H
#include <kvm.h>
extern kvm_t   *kd;
#endif