htop/unsupported/UnsupportedProcessList.h

22 lines
622 B
C
Raw Normal View History

#ifndef HEADER_UnsupportedProcessList
#define HEADER_UnsupportedProcessList
/*
htop - UnsupportedProcessList.h
(C) 2014 Hisham H. Muhammad
Released under the GNU GPLv2+, see the COPYING file
in the source distribution for its full text.
*/
2021-01-28 20:19:38 +03:00
#include "ProcessList.h"
2021-08-24 21:23:03 +03:00
ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* dynamicMeters, Hashtable* dynamicColumns, Hashtable* pidMatchList, uid_t userId);
void ProcessList_delete(ProcessList* this);
void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate);
2015-07-12 19:26:33 +03:00
2021-06-12 23:04:37 +03:00
bool ProcessList_isCPUonline(const ProcessList* super, unsigned int id);
#endif