2018-03-03 00:20:46 +03:00
|
|
|
#ifndef HEADER_SolarisProcess
|
|
|
|
#define HEADER_SolarisProcess
|
|
|
|
/*
|
|
|
|
htop - SolarisProcess.h
|
|
|
|
(C) 2015 Hisham H. Muhammad
|
2018-03-06 00:52:03 +03:00
|
|
|
(C) 2017,2018 Guy M. Broome
|
2021-09-22 12:33:00 +03:00
|
|
|
Released under the GNU GPLv2+, see the COPYING file
|
2018-03-03 00:20:46 +03:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2021-04-03 21:49:45 +03:00
|
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
|
2018-03-03 00:20:46 +03:00
|
|
|
#include <zone.h>
|
2018-03-28 19:48:37 +03:00
|
|
|
#include <sys/proc.h>
|
2021-05-20 19:27:10 +03:00
|
|
|
|
|
|
|
/* On OmniOS /usr/include/sys/regset.h redefines ERR to 13 - \r, breaking the Enter key.
|
|
|
|
* Since ncruses macros use the ERR macro, we can not use another name.
|
|
|
|
*/
|
|
|
|
#undef ERR
|
2018-03-28 19:48:37 +03:00
|
|
|
#include <libproc.h>
|
2021-05-20 19:27:10 +03:00
|
|
|
#undef ERR
|
|
|
|
#define ERR (-1)
|
2018-03-03 00:20:46 +03:00
|
|
|
|
2021-04-03 21:49:45 +03:00
|
|
|
#include "Settings.h"
|
|
|
|
|
|
|
|
|
2018-03-03 00:20:46 +03:00
|
|
|
typedef struct SolarisProcess_ {
|
2018-03-06 00:27:27 +03:00
|
|
|
Process super;
|
2018-03-03 00:20:46 +03:00
|
|
|
zoneid_t zoneid;
|
2018-03-06 00:27:27 +03:00
|
|
|
char* zname;
|
2018-03-03 00:20:46 +03:00
|
|
|
taskid_t taskid;
|
|
|
|
projid_t projid;
|
|
|
|
poolid_t poolid;
|
|
|
|
ctid_t contid;
|
2018-03-27 19:27:12 +03:00
|
|
|
pid_t realpid;
|
|
|
|
pid_t realppid;
|
2021-05-20 18:54:17 +03:00
|
|
|
pid_t realtgid;
|
2018-03-27 19:27:12 +03:00
|
|
|
pid_t lwpid;
|
2018-03-03 00:20:46 +03:00
|
|
|
} SolarisProcess;
|
|
|
|
|
2020-10-13 15:35:30 +03:00
|
|
|
extern const ProcessClass SolarisProcess_class;
|
2018-03-03 00:20:46 +03:00
|
|
|
|
2020-12-15 21:44:52 +03:00
|
|
|
extern const ProcessFieldData Process_fields[LAST_PROCESSFIELD];
|
2018-03-03 00:20:46 +03:00
|
|
|
|
2020-10-21 22:26:05 +03:00
|
|
|
Process* SolarisProcess_new(const Settings* settings);
|
2018-03-03 00:20:46 +03:00
|
|
|
|
|
|
|
void Process_delete(Object* cast);
|
|
|
|
|
|
|
|
#endif
|