mirror of
https://github.com/xzeldon/htop.git
synced 2024-12-25 15:25:45 +00:00
96e2a4259e
Generic data, as CPU and memory usage, are used by Meters. In paused mode they would stop receiving updates and especially Graph Meters would stop showing continuous data. Improves: #214 Closes: #253
17 lines
467 B
C
17 lines
467 B
C
#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.
|
|
*/
|
|
|
|
ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidMatchList, uid_t userId);
|
|
|
|
void ProcessList_delete(ProcessList* this);
|
|
|
|
void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate);
|
|
|
|
#endif
|