| /* Do not edit this file. It was automatically generated. */ |
| |
| #ifndef HEADER_AixProcessList |
| #define HEADER_AixProcessList |
| /* |
| htop - AixProcessList.h |
| (C) 2014 Hisham H. Muhammad |
| (C) 2018 Calvin Buckley |
| Released under the GNU GPL, see the COPYING file |
| in the source distribution for its full text. |
| */ |
| |
| |
| typedef struct AixProcessList_ { |
| ProcessList super; |
| |
| } AixProcessList; |
| |
| #ifndef Process_isKernelThread |
| #define Process_isKernelThread(_process) (_process->kernel == 1) |
| #endif |
| |
| #ifndef Process_isUserlandThread |
| // XXX |
| #define Process_isUserlandThread(_process) (false) |
| #endif |
| |
| |
| ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidWhiteList, uid_t userId); |
| |
| void ProcessList_delete(ProcessList* this); |
| |
| void ProcessList_goThroughEntries(ProcessList* super); |
| |
| #endif |