htop/openbsd/OpenBSDProcess.h

37 lines
802 B
C
Raw Normal View History

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
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.
*/
#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;
} 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 const ProcessFieldData Process_fields[LAST_PROCESSFIELD];
2015-09-18 04:46:48 +00:00
Process* OpenBSDProcess_new(const Settings* settings);
2015-09-18 04:46:48 +00:00
void Process_delete(Object* cast);
bool Process_isThread(const Process* this);
2015-09-18 04:46:48 +00:00
#endif