summaryrefslogtreecommitdiffstats
path: root/ProcessTable.h
blob: 96a517a07fc61d9aeccf5abbb63571fffbb35426 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef HEADER_ProcessTable
#define HEADER_ProcessTable
/*
htop - ProcessTable.h
(C) 2004,2005 Hisham H. Muhammad
Released under the GNU GPLv2+, see the COPYING file
in the source distribution for its full text.
*/

#include <stdbool.h>
#include <sys/types.h>

#include "Hashtable.h"
#include "Machine.h"
#include "Object.h"
#include "Process.h"
#include "Table.h"


typedef struct ProcessTable_ {
   Table super;

   Hashtable* pidMatchList;

   unsigned int totalTasks;
   unsigned int runningTasks;
   unsigned int userlandThreads;
   unsigned int kernelThreads;
} ProcessTable;

/* Implemented by platforms */
ProcessTable* ProcessTable_new(Machine* host, Hashtable* pidMatchList);
void ProcessTable_delete(Object* cast);
void ProcessTable_goThroughEntries(ProcessTable* this);

void ProcessTable_init(ProcessTable* this, const ObjectClass* klass, Machine* host, Hashtable* pidMatchList);

void ProcessTable_done(ProcessTable* this);

extern const TableClass ProcessTable_class;

static inline void ProcessTable_add(ProcessTable* this, Process* process) {
   Table_add(&this->super, &process->super);
}

Process* ProcessTable_getProcess(ProcessTable* this, pid_t pid, bool* preExisting, Process_New constructor);

static inline Process* ProcessTable_findProcess(ProcessTable* this, pid_t pid) {
   return (Process*) Table_findRow(&this->super, pid);
}

#endif

© 2014-2024 Faster IT GmbH | imprint | privacy policy