htop/openbsd/OpenBSDProcess.h

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