2015-09-18 04:46:48 +00:00
|
|
|
#ifndef HEADER_OpenBSDProcess
|
|
|
|
#define HEADER_OpenBSDProcess
|
|
|
|
/*
|
|
|
|
htop - OpenBSDProcess.h
|
|
|
|
(C) 2015 Hisham H. Muhammad
|
|
|
|
(C) 2015 Michael McConville
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2015-09-18 04:46:48 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2020-09-08 07:33:50 +00:00
|
|
|
typedef enum OpenBSDProcessFields_ {
|
2015-09-18 04:46:48 +00:00
|
|
|
// Add platform-specific fields here, with ids >= 100
|
|
|
|
LAST_PROCESSFIELD = 100,
|
|
|
|
} OpenBSDProcessField;
|
|
|
|
|
|
|
|
typedef struct OpenBSDProcess_ {
|
|
|
|
Process super;
|
|
|
|
} OpenBSDProcess;
|
|
|
|
|
|
|
|
#define Process_isKernelThread(_process) (_process->pgrp == 0)
|
|
|
|
|
|
|
|
#define Process_isUserlandThread(_process) (_process->pid != _process->tgid)
|
|
|
|
|
2020-10-13 12:35:30 +00:00
|
|
|
extern const ProcessClass OpenBSDProcess_class;
|
2015-09-18 04:46:48 +00:00
|
|
|
|
|
|
|
extern ProcessFieldData Process_fields[];
|
|
|
|
|
|
|
|
extern ProcessPidColumn Process_pidColumns[];
|
|
|
|
|
2020-10-21 19:26:05 +00:00
|
|
|
Process* OpenBSDProcess_new(const Settings* settings);
|
2015-09-18 04:46:48 +00:00
|
|
|
|
|
|
|
void Process_delete(Object* cast);
|
|
|
|
|
2020-10-21 19:26:01 +00:00
|
|
|
void OpenBSDProcess_writeField(const Process* this, RichString* str, ProcessField field);
|
2015-09-18 04:46:48 +00:00
|
|
|
|
|
|
|
long OpenBSDProcess_compare(const void* v1, const void* v2);
|
|
|
|
|
2020-10-07 17:02:15 +00:00
|
|
|
bool Process_isThread(const Process* this);
|
2015-09-18 04:46:48 +00:00
|
|
|
|
|
|
|
#endif
|