Reading first bits of data!

This commit is contained in:
Hisham Muhammad
2014-11-27 17:44:55 -02:00
parent 8a2e235a48
commit 28712f22b1
2 changed files with 59 additions and 9 deletions

View File

@ -3,13 +3,21 @@
#ifndef HEADER_FreeBSDProcessList
#define HEADER_FreeBSDProcessList
/*
htop - UnsupportedProcessList.h
htop - FreeBSDProcessList.h
(C) 2014 Hisham H. Muhammad
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
#include <kvm.h>
typedef struct FreeBSDProcessList_ {
ProcessList super;
kvm_t* kd;
} FreeBSDProcessList;
ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidWhiteList);