Regenerate platform-dependent headers.

Closes #293.
This commit is contained in:
Hisham Muhammad
2015-10-19 17:22:54 -02:00
parent e906c0dddb
commit 78f2933e2b
7 changed files with 36 additions and 8 deletions

View File

@ -11,6 +11,12 @@ in the source distribution for its full text.
#include <kvm.h>
#include <sys/param.h>
#include <sys/jail.h>
#include <sys/uio.h>
#define JAIL_ERRMSGLEN 1024
char jail_errmsg[JAIL_ERRMSGLEN];
typedef struct CPUData_ {
unsigned long long int totalTime;
@ -32,6 +38,8 @@ void ProcessList_delete(ProcessList* this);
char* FreeBSDProcessList_readProcessName(kvm_t* kd, struct kinfo_proc* kproc, int* basenameEnd);
char* FreeBSDProcessList_readJailName(struct kinfo_proc* kproc);
void ProcessList_goThroughEntries(ProcessList* this);
#endif