mirror of https://github.com/xzeldon/htop.git
fix building on openbsd due to remaining WhiteList
This commit is contained in:
parent
cd55cfd6d2
commit
fd4ada416d
|
@ -41,7 +41,7 @@ ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidMatchList, ui
|
||||||
opl = xCalloc(1, sizeof(OpenBSDProcessList));
|
opl = xCalloc(1, sizeof(OpenBSDProcessList));
|
||||||
pl = (ProcessList*) opl;
|
pl = (ProcessList*) opl;
|
||||||
size = sizeof(pl->cpuCount);
|
size = sizeof(pl->cpuCount);
|
||||||
ProcessList_init(pl, Class(OpenBSDProcess), usersTable, pidWhiteList, userId);
|
ProcessList_init(pl, Class(OpenBSDProcess), usersTable, pidMatchList, userId);
|
||||||
|
|
||||||
e = sysctl(mib, 2, &pl->cpuCount, &size, NULL, 0);
|
e = sysctl(mib, 2, &pl->cpuCount, &size, NULL, 0);
|
||||||
if (e == -1 || pl->cpuCount < 1) {
|
if (e == -1 || pl->cpuCount < 1) {
|
||||||
|
|
Loading…
Reference in New Issue