2015-03-16 06:13:42 +00:00
|
|
|
#ifndef HEADER_FreeBSDProcess
|
|
|
|
#define HEADER_FreeBSDProcess
|
|
|
|
/*
|
|
|
|
htop - FreeBSDProcess.h
|
|
|
|
(C) 2015 Hisham H. Muhammad
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2015-03-16 06:13:42 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2020-09-19 11:55:23 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#include "Object.h"
|
|
|
|
#include "Process.h"
|
|
|
|
#include "Settings.h"
|
|
|
|
|
|
|
|
|
2020-10-21 11:56:26 +00:00
|
|
|
#define PROCESS_FLAG_FREEBSD_TTY 0x0100
|
|
|
|
|
|
|
|
extern const char* const nodevStr;
|
|
|
|
|
2015-03-16 06:13:42 +00:00
|
|
|
typedef struct FreeBSDProcess_ {
|
|
|
|
Process super;
|
2021-01-27 14:11:54 +00:00
|
|
|
bool isKernelThread;
|
2015-10-19 19:22:54 +00:00
|
|
|
int jid;
|
|
|
|
char* jname;
|
2020-10-21 11:56:26 +00:00
|
|
|
const char* ttyPath;
|
2015-03-16 06:13:42 +00:00
|
|
|
} FreeBSDProcess;
|
|
|
|
|
2020-10-21 17:11:26 +00:00
|
|
|
static inline bool Process_isKernelThread(const Process* this) {
|
2021-01-27 14:11:54 +00:00
|
|
|
return ((const FreeBSDProcess*)this)->isKernelThread;
|
2020-10-21 17:11:26 +00:00
|
|
|
}
|
2015-03-17 02:01:48 +00:00
|
|
|
|
2020-10-21 17:11:26 +00:00
|
|
|
static inline bool Process_isUserlandThread(const Process* this) {
|
|
|
|
return this->pid != this->tgid;
|
|
|
|
}
|
2015-03-16 06:13:42 +00:00
|
|
|
|
2020-10-13 12:35:30 +00:00
|
|
|
extern const ProcessClass FreeBSDProcess_class;
|
2015-06-07 09:17:46 +00:00
|
|
|
|
2020-12-15 18:44:52 +00:00
|
|
|
extern const ProcessFieldData Process_fields[LAST_PROCESSFIELD];
|
2015-03-16 06:13:42 +00:00
|
|
|
|
2020-10-21 19:26:05 +00:00
|
|
|
Process* FreeBSDProcess_new(const Settings* settings);
|
2015-03-16 06:13:42 +00:00
|
|
|
|
|
|
|
void Process_delete(Object* cast);
|
|
|
|
|
2020-10-07 17:02:15 +00:00
|
|
|
bool Process_isThread(const Process* this);
|
2015-03-16 06:13:42 +00:00
|
|
|
|
|
|
|
#endif
|