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-12-05 21:57:07 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#include "Object.h"
|
|
|
|
#include "Process.h"
|
|
|
|
#include "Settings.h"
|
|
|
|
|
|
|
|
|
2015-09-18 04:46:48 +00:00
|
|
|
typedef struct OpenBSDProcess_ {
|
|
|
|
Process super;
|
2021-03-19 16:34:12 +00:00
|
|
|
|
|
|
|
/* 'Kernel virtual addr of u-area' to detect main threads */
|
|
|
|
uint64_t addr;
|
2015-09-18 04:46:48 +00:00
|
|
|
} OpenBSDProcess;
|
|
|
|
|
2021-03-19 16:34:12 +00:00
|
|
|
static inline bool Process_isKernelThread(const Process* this) {
|
|
|
|
return this->pgrp == 0;
|
|
|
|
}
|
2015-09-18 04:46:48 +00:00
|
|
|
|
2021-03-19 16:34:12 +00:00
|
|
|
static inline bool Process_isUserlandThread(const Process* this) {
|
|
|
|
return this->pid != this->tgid;
|
|
|
|
}
|
2015-09-18 04:46:48 +00:00
|
|
|
|
2020-10-13 12:35:30 +00:00
|
|
|
extern const ProcessClass OpenBSDProcess_class;
|
2015-09-18 04:46:48 +00:00
|
|
|
|
2020-12-15 18:44:52 +00:00
|
|
|
extern const ProcessFieldData Process_fields[LAST_PROCESSFIELD];
|
2015-09-18 04:46:48 +00:00
|
|
|
|
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-07 17:02:15 +00:00
|
|
|
bool Process_isThread(const Process* this);
|
2015-09-18 04:46:48 +00:00
|
|
|
|
|
|
|
#endif
|