2018-03-02 21:20:46 +00:00
|
|
|
#ifndef HEADER_SolarisProcess
|
|
|
|
#define HEADER_SolarisProcess
|
|
|
|
/*
|
|
|
|
htop - SolarisProcess.h
|
|
|
|
(C) 2015 Hisham H. Muhammad
|
2018-03-05 21:52:03 +00:00
|
|
|
(C) 2017,2018 Guy M. Broome
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2018-03-02 21:20:46 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Settings.h"
|
|
|
|
#include <zone.h>
|
2018-03-28 16:48:37 +00:00
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <libproc.h>
|
2018-03-02 21:20:46 +00:00
|
|
|
|
|
|
|
typedef struct SolarisProcess_ {
|
2018-03-05 21:27:27 +00:00
|
|
|
Process super;
|
|
|
|
int kernel;
|
2018-03-02 21:20:46 +00:00
|
|
|
zoneid_t zoneid;
|
2018-03-05 21:27:27 +00:00
|
|
|
char* zname;
|
2018-03-02 21:20:46 +00:00
|
|
|
taskid_t taskid;
|
|
|
|
projid_t projid;
|
|
|
|
poolid_t poolid;
|
|
|
|
ctid_t contid;
|
2018-03-27 16:27:12 +00:00
|
|
|
bool is_lwp;
|
|
|
|
pid_t realpid;
|
|
|
|
pid_t realppid;
|
|
|
|
pid_t lwpid;
|
2018-03-02 21:20:46 +00:00
|
|
|
} SolarisProcess;
|
|
|
|
|
|
|
|
#define Process_isKernelThread(_process) (_process->kernel == 1)
|
|
|
|
|
|
|
|
#define Process_isUserlandThread(_process) (_process->pid != _process->tgid)
|
|
|
|
|
2020-10-13 12:35:30 +00:00
|
|
|
extern const ProcessClass SolarisProcess_class;
|
2018-03-02 21:20:46 +00:00
|
|
|
|
2020-12-15 18:44:52 +00:00
|
|
|
extern const ProcessFieldData Process_fields[LAST_PROCESSFIELD];
|
2018-03-02 21:20:46 +00:00
|
|
|
|
2020-10-21 19:26:05 +00:00
|
|
|
Process* SolarisProcess_new(const Settings* settings);
|
2018-03-02 21:20:46 +00:00
|
|
|
|
|
|
|
void Process_delete(Object* cast);
|
|
|
|
|
2020-10-07 17:02:15 +00:00
|
|
|
bool Process_isThread(const Process* this);
|
2018-03-02 21:20:46 +00:00
|
|
|
|
|
|
|
#endif
|