2006-03-04 18:16:49 +00:00
|
|
|
#ifndef HEADER_Process
|
|
|
|
#define HEADER_Process
|
|
|
|
/*
|
|
|
|
htop - Process.h
|
2015-03-21 19:52:54 +00:00
|
|
|
(C) 2004-2015 Hisham H. Muhammad
|
2020-08-19 23:35:24 +00:00
|
|
|
(C) 2020 Red Hat, Inc. All Rights Reserved.
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2006-03-04 18:16:49 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2020-09-19 11:55:23 +00:00
|
|
|
#include <stdbool.h>
|
2020-10-09 13:13:06 +00:00
|
|
|
#include <stdint.h>
|
2020-11-01 00:36:53 +00:00
|
|
|
#include <sys/types.h>
|
2020-09-19 11:55:23 +00:00
|
|
|
|
|
|
|
#include "Object.h"
|
2020-12-15 18:44:48 +00:00
|
|
|
#include "ProcessField.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "RichString.h"
|
|
|
|
|
2015-05-20 02:30:11 +00:00
|
|
|
|
2015-03-15 23:29:13 +00:00
|
|
|
#define PROCESS_FLAG_IO 0x0001
|
2020-10-31 01:56:16 +00:00
|
|
|
#define DEFAULT_HIGHLIGHT_SECS 5
|
2013-05-24 22:46:01 +00:00
|
|
|
|
2020-12-15 18:44:36 +00:00
|
|
|
typedef enum ProcessField_ {
|
2016-05-30 15:22:07 +00:00
|
|
|
NULL_PROCESSFIELD = 0,
|
2015-03-16 04:43:04 +00:00
|
|
|
PID = 1,
|
|
|
|
COMM = 2,
|
|
|
|
STATE = 3,
|
|
|
|
PPID = 4,
|
|
|
|
PGRP = 5,
|
|
|
|
SESSION = 6,
|
|
|
|
TTY_NR = 7,
|
|
|
|
TPGID = 8,
|
|
|
|
MINFLT = 10,
|
|
|
|
MAJFLT = 12,
|
|
|
|
PRIORITY = 18,
|
|
|
|
NICE = 19,
|
|
|
|
STARTTIME = 21,
|
2015-03-17 02:01:48 +00:00
|
|
|
PROCESSOR = 38,
|
2020-11-20 16:09:34 +00:00
|
|
|
M_VIRT = 39,
|
2015-03-16 04:43:04 +00:00
|
|
|
M_RESIDENT = 40,
|
|
|
|
ST_UID = 46,
|
|
|
|
PERCENT_CPU = 47,
|
|
|
|
PERCENT_MEM = 48,
|
|
|
|
USER = 49,
|
|
|
|
TIME = 50,
|
|
|
|
NLWP = 51,
|
|
|
|
TGID = 52,
|
2020-10-30 16:02:20 +00:00
|
|
|
PERCENT_NORM_CPU = 53,
|
2020-12-15 18:44:48 +00:00
|
|
|
|
|
|
|
/* Platform specific fields, defined in ${platform}/ProcessField.h */
|
|
|
|
PLATFORM_PROCESS_FIELDS
|
|
|
|
|
|
|
|
LAST_PROCESSFIELD
|
2015-03-16 04:43:04 +00:00
|
|
|
} ProcessField;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-10-19 10:05:06 +00:00
|
|
|
struct Settings_;
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
typedef struct Process_ {
|
|
|
|
Object super;
|
|
|
|
|
2020-10-31 01:56:16 +00:00
|
|
|
const struct ProcessList_* processList;
|
2020-10-21 19:26:05 +00:00
|
|
|
const struct Settings_* settings;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2015-03-16 04:43:04 +00:00
|
|
|
unsigned long long int time;
|
2010-02-25 01:43:18 +00:00
|
|
|
pid_t pid;
|
2015-03-16 04:43:04 +00:00
|
|
|
pid_t ppid;
|
|
|
|
pid_t tgid;
|
2020-11-09 16:37:02 +00:00
|
|
|
char* comm; /* use Process_getCommand() for Command actually displayed */
|
2016-02-02 14:56:52 +00:00
|
|
|
int commLen;
|
2006-03-04 18:16:49 +00:00
|
|
|
int indent;
|
2015-03-15 23:29:13 +00:00
|
|
|
|
|
|
|
int basenameOffset;
|
|
|
|
bool updated;
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
char state;
|
|
|
|
bool tag;
|
2010-06-17 19:02:03 +00:00
|
|
|
bool showChildren;
|
2010-11-22 12:40:20 +00:00
|
|
|
bool show;
|
2020-11-01 00:36:53 +00:00
|
|
|
bool wasShown;
|
2007-05-17 18:29:30 +00:00
|
|
|
unsigned int pgrp;
|
|
|
|
unsigned int session;
|
|
|
|
unsigned int tty_nr;
|
2007-11-08 23:23:01 +00:00
|
|
|
int tpgid;
|
2015-03-16 04:43:04 +00:00
|
|
|
uid_t st_uid;
|
2006-03-04 18:16:49 +00:00
|
|
|
unsigned long int flags;
|
2015-03-17 02:01:48 +00:00
|
|
|
int processor;
|
2014-02-27 19:35:22 +00:00
|
|
|
|
|
|
|
float percent_cpu;
|
|
|
|
float percent_mem;
|
2020-10-21 19:26:03 +00:00
|
|
|
const char* user;
|
2014-02-27 19:35:22 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
long int priority;
|
|
|
|
long int nice;
|
2007-05-21 19:10:53 +00:00
|
|
|
long int nlwp;
|
2010-03-29 18:36:11 +00:00
|
|
|
char starttime_show[8];
|
|
|
|
time_t starttime_ctime;
|
2014-02-27 19:35:22 +00:00
|
|
|
|
2020-11-20 16:09:34 +00:00
|
|
|
long m_virt;
|
2014-04-10 01:32:54 +00:00
|
|
|
long m_resident;
|
2014-02-27 19:35:22 +00:00
|
|
|
|
|
|
|
int exit_signal;
|
|
|
|
|
2020-10-31 01:56:16 +00:00
|
|
|
time_t seenTs;
|
|
|
|
time_t tombTs;
|
|
|
|
|
2014-02-27 19:35:22 +00:00
|
|
|
unsigned long int minflt;
|
|
|
|
unsigned long int majflt;
|
2020-11-18 11:19:42 +00:00
|
|
|
|
|
|
|
unsigned int tree_left;
|
|
|
|
unsigned int tree_right;
|
|
|
|
unsigned int tree_depth;
|
|
|
|
unsigned int tree_index;
|
2006-03-04 18:16:49 +00:00
|
|
|
} Process;
|
|
|
|
|
2015-01-22 01:27:31 +00:00
|
|
|
typedef struct ProcessFieldData_ {
|
|
|
|
const char* name;
|
|
|
|
const char* title;
|
|
|
|
const char* description;
|
2020-10-09 13:13:06 +00:00
|
|
|
uint32_t flags;
|
2020-12-15 18:44:52 +00:00
|
|
|
bool pidColumn;
|
2015-01-22 01:27:31 +00:00
|
|
|
} ProcessFieldData;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2015-03-16 04:43:04 +00:00
|
|
|
// Implemented in platform-specific code:
|
2020-10-06 10:28:11 +00:00
|
|
|
void Process_writeField(const Process* this, RichString* str, ProcessField field);
|
2020-12-23 12:02:32 +00:00
|
|
|
int Process_compare(const void* v1, const void* v2);
|
2015-03-16 04:43:04 +00:00
|
|
|
void Process_delete(Object* cast);
|
2020-10-07 17:02:15 +00:00
|
|
|
bool Process_isThread(const Process* this);
|
2020-12-15 18:44:52 +00:00
|
|
|
extern const ProcessFieldData Process_fields[LAST_PROCESSFIELD];
|
|
|
|
#define PROCESS_MAX_PID_DIGITS 19
|
|
|
|
extern int Process_pidDigits;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-10-21 19:26:05 +00:00
|
|
|
typedef Process*(*Process_New)(const struct Settings_*);
|
2020-10-06 10:28:11 +00:00
|
|
|
typedef void (*Process_WriteField)(const Process*, RichString*, ProcessField);
|
2020-12-23 12:02:32 +00:00
|
|
|
typedef int (*Process_CompareByKey)(const Process*, const Process*, ProcessField);
|
2020-10-17 10:54:45 +00:00
|
|
|
typedef const char* (*Process_GetCommandStr)(const Process*);
|
2015-04-01 02:23:10 +00:00
|
|
|
|
|
|
|
typedef struct ProcessClass_ {
|
|
|
|
const ObjectClass super;
|
|
|
|
const Process_WriteField writeField;
|
2020-12-17 23:09:55 +00:00
|
|
|
const Process_CompareByKey compareByKey;
|
2020-10-17 10:54:45 +00:00
|
|
|
const Process_GetCommandStr getCommandStr;
|
2015-04-01 02:23:10 +00:00
|
|
|
} ProcessClass;
|
|
|
|
|
2020-12-17 23:09:55 +00:00
|
|
|
#define As_Process(this_) ((const ProcessClass*)((this_)->super.klass))
|
2015-03-17 02:01:48 +00:00
|
|
|
|
2020-12-17 23:09:55 +00:00
|
|
|
#define Process_getCommand(this_) (As_Process(this_)->getCommandStr ? As_Process(this_)->getCommandStr((const Process*)(this_)) : ((const Process*)(this_))->comm)
|
2020-12-18 21:12:26 +00:00
|
|
|
#define Process_compareByKey(p1_, p2_, key_) (As_Process(p1_)->compareByKey ? (As_Process(p1_)->compareByKey(p1_, p2_, key_)) : Process_compareByKey_Base(p1_, p2_, key_))
|
2020-10-17 10:54:45 +00:00
|
|
|
|
2020-10-27 20:26:45 +00:00
|
|
|
static inline pid_t Process_getParentPid(const Process* this) {
|
|
|
|
return this->tgid == this->pid ? this->ppid : this->tgid;
|
|
|
|
}
|
2018-04-05 22:31:18 +00:00
|
|
|
|
2020-10-27 20:26:45 +00:00
|
|
|
static inline bool Process_isChildOf(const Process* this, pid_t pid) {
|
|
|
|
return pid == Process_getParentPid(this);
|
|
|
|
}
|
2017-09-14 20:10:39 +00:00
|
|
|
|
2018-01-14 09:08:20 +00:00
|
|
|
#define Process_sortState(state) ((state) == 'I' ? 0x100 : (state))
|
|
|
|
|
2013-05-24 22:46:01 +00:00
|
|
|
|
Process.{h,c}: Use integer types that are more portable
When building on a 32-bit system, the compiler warned that the
following line uses a constant whose value is the overflow result
of a compile-time computation:
Process.c (line 109): } else if (number < 10000 * ONE_M) {
Namely, this constant expression:
10000 * ONE_M
was intended to produce the following value:
10485760000
However, the result overflowed to produce:
1895825408
The reason for this overflow is as follows:
o The macros are expanded:
10000 * (ONE_K * ONE_K)
10000 * (1024L * 1024L)
o The untyped constant expression "10000" is typed:
10000U * (1024L * 1024L)
o The parenthesized expression is evaluated:
10000U * (1048576L)
o The left operand ("10000U") is converted:
10000L * (1048576L)
Unbound by integer sizes, that last multiplication
would produce the following value:
10485760000
However, on a 32-bit machine, where a long is 32 bits
(really 31 bits when talking about positive numbers),
the maximum value that can be computed is 2**31-1:
2147483647
Consequently, the computation overflows.
o The compiler produces a long int value that is the
the result of overflow (10485760000 % 2**31):
1895825408L
Actually, I think this overflow is implementation-defined,
so it's not even a portable description of what happens.
The solution is to use a long long int (or, even better,
an unsigned long long int) type for the constant expression;
the C standard mandates a sufficiently large maximum value
for such types.
Hence, the following change is made to the bad line:
- } else if (number < 10000 * ONE_M) {
+ } else if (number < 10000ULL * ONE_M) {
However, the whole line is now patently silly, because the
variable "number" is typed "unsigned long", and so it will
always be less than the constant expression (the compiler
will warn about this, too).
Hence, "number" must be typed "unsigned long long"; however,
this necessitates changing all of the string formats from
something like "%lu" to something like "%llu".
Et voila! This commit is born.
Then, for the sake of completeness, the declared types of the
constant-expression macros are updated:
o ONE_K is made unsigned (a "UL" instead of "L")
o ONE_T is computed by introducing "1ULL *"
o Similar changes are made for ONE_DECIMAL_{K,T}
Also, a non-portable overflow-conversion to a signed value
has been replaced with a portable comparison:
- if ((long long) number == -1LL) {
+ if (number == ULLONG_MAX) {
It might be worth reviewing the rest of the code for other
cases where overflows are not handled correctly; even at
runtime, it's often necessary to check for overflow unless
such behavior is expected (especially for signed integer
values, for which overflow has implementation-defined
behavior).
2020-09-29 14:04:22 +00:00
|
|
|
#define ONE_K 1024UL
|
2008-03-09 08:58:38 +00:00
|
|
|
#define ONE_M (ONE_K * ONE_K)
|
|
|
|
#define ONE_G (ONE_M * ONE_K)
|
Process.{h,c}: Use integer types that are more portable
When building on a 32-bit system, the compiler warned that the
following line uses a constant whose value is the overflow result
of a compile-time computation:
Process.c (line 109): } else if (number < 10000 * ONE_M) {
Namely, this constant expression:
10000 * ONE_M
was intended to produce the following value:
10485760000
However, the result overflowed to produce:
1895825408
The reason for this overflow is as follows:
o The macros are expanded:
10000 * (ONE_K * ONE_K)
10000 * (1024L * 1024L)
o The untyped constant expression "10000" is typed:
10000U * (1024L * 1024L)
o The parenthesized expression is evaluated:
10000U * (1048576L)
o The left operand ("10000U") is converted:
10000L * (1048576L)
Unbound by integer sizes, that last multiplication
would produce the following value:
10485760000
However, on a 32-bit machine, where a long is 32 bits
(really 31 bits when talking about positive numbers),
the maximum value that can be computed is 2**31-1:
2147483647
Consequently, the computation overflows.
o The compiler produces a long int value that is the
the result of overflow (10485760000 % 2**31):
1895825408L
Actually, I think this overflow is implementation-defined,
so it's not even a portable description of what happens.
The solution is to use a long long int (or, even better,
an unsigned long long int) type for the constant expression;
the C standard mandates a sufficiently large maximum value
for such types.
Hence, the following change is made to the bad line:
- } else if (number < 10000 * ONE_M) {
+ } else if (number < 10000ULL * ONE_M) {
However, the whole line is now patently silly, because the
variable "number" is typed "unsigned long", and so it will
always be less than the constant expression (the compiler
will warn about this, too).
Hence, "number" must be typed "unsigned long long"; however,
this necessitates changing all of the string formats from
something like "%lu" to something like "%llu".
Et voila! This commit is born.
Then, for the sake of completeness, the declared types of the
constant-expression macros are updated:
o ONE_K is made unsigned (a "UL" instead of "L")
o ONE_T is computed by introducing "1ULL *"
o Similar changes are made for ONE_DECIMAL_{K,T}
Also, a non-portable overflow-conversion to a signed value
has been replaced with a portable comparison:
- if ((long long) number == -1LL) {
+ if (number == ULLONG_MAX) {
It might be worth reviewing the rest of the code for other
cases where overflows are not handled correctly; even at
runtime, it's often necessary to check for overflow unless
such behavior is expected (especially for signed integer
values, for which overflow has implementation-defined
behavior).
2020-09-29 14:04:22 +00:00
|
|
|
#define ONE_T (1ULL * ONE_G * ONE_K)
|
2006-03-04 18:16:49 +00:00
|
|
|
|
Process.{h,c}: Use integer types that are more portable
When building on a 32-bit system, the compiler warned that the
following line uses a constant whose value is the overflow result
of a compile-time computation:
Process.c (line 109): } else if (number < 10000 * ONE_M) {
Namely, this constant expression:
10000 * ONE_M
was intended to produce the following value:
10485760000
However, the result overflowed to produce:
1895825408
The reason for this overflow is as follows:
o The macros are expanded:
10000 * (ONE_K * ONE_K)
10000 * (1024L * 1024L)
o The untyped constant expression "10000" is typed:
10000U * (1024L * 1024L)
o The parenthesized expression is evaluated:
10000U * (1048576L)
o The left operand ("10000U") is converted:
10000L * (1048576L)
Unbound by integer sizes, that last multiplication
would produce the following value:
10485760000
However, on a 32-bit machine, where a long is 32 bits
(really 31 bits when talking about positive numbers),
the maximum value that can be computed is 2**31-1:
2147483647
Consequently, the computation overflows.
o The compiler produces a long int value that is the
the result of overflow (10485760000 % 2**31):
1895825408L
Actually, I think this overflow is implementation-defined,
so it's not even a portable description of what happens.
The solution is to use a long long int (or, even better,
an unsigned long long int) type for the constant expression;
the C standard mandates a sufficiently large maximum value
for such types.
Hence, the following change is made to the bad line:
- } else if (number < 10000 * ONE_M) {
+ } else if (number < 10000ULL * ONE_M) {
However, the whole line is now patently silly, because the
variable "number" is typed "unsigned long", and so it will
always be less than the constant expression (the compiler
will warn about this, too).
Hence, "number" must be typed "unsigned long long"; however,
this necessitates changing all of the string formats from
something like "%lu" to something like "%llu".
Et voila! This commit is born.
Then, for the sake of completeness, the declared types of the
constant-expression macros are updated:
o ONE_K is made unsigned (a "UL" instead of "L")
o ONE_T is computed by introducing "1ULL *"
o Similar changes are made for ONE_DECIMAL_{K,T}
Also, a non-portable overflow-conversion to a signed value
has been replaced with a portable comparison:
- if ((long long) number == -1LL) {
+ if (number == ULLONG_MAX) {
It might be worth reviewing the rest of the code for other
cases where overflows are not handled correctly; even at
runtime, it's often necessary to check for overflow unless
such behavior is expected (especially for signed integer
values, for which overflow has implementation-defined
behavior).
2020-09-29 14:04:22 +00:00
|
|
|
#define ONE_DECIMAL_K 1000UL
|
2014-02-27 19:35:22 +00:00
|
|
|
#define ONE_DECIMAL_M (ONE_DECIMAL_K * ONE_DECIMAL_K)
|
2014-04-10 01:32:54 +00:00
|
|
|
#define ONE_DECIMAL_G (ONE_DECIMAL_M * ONE_DECIMAL_K)
|
Process.{h,c}: Use integer types that are more portable
When building on a 32-bit system, the compiler warned that the
following line uses a constant whose value is the overflow result
of a compile-time computation:
Process.c (line 109): } else if (number < 10000 * ONE_M) {
Namely, this constant expression:
10000 * ONE_M
was intended to produce the following value:
10485760000
However, the result overflowed to produce:
1895825408
The reason for this overflow is as follows:
o The macros are expanded:
10000 * (ONE_K * ONE_K)
10000 * (1024L * 1024L)
o The untyped constant expression "10000" is typed:
10000U * (1024L * 1024L)
o The parenthesized expression is evaluated:
10000U * (1048576L)
o The left operand ("10000U") is converted:
10000L * (1048576L)
Unbound by integer sizes, that last multiplication
would produce the following value:
10485760000
However, on a 32-bit machine, where a long is 32 bits
(really 31 bits when talking about positive numbers),
the maximum value that can be computed is 2**31-1:
2147483647
Consequently, the computation overflows.
o The compiler produces a long int value that is the
the result of overflow (10485760000 % 2**31):
1895825408L
Actually, I think this overflow is implementation-defined,
so it's not even a portable description of what happens.
The solution is to use a long long int (or, even better,
an unsigned long long int) type for the constant expression;
the C standard mandates a sufficiently large maximum value
for such types.
Hence, the following change is made to the bad line:
- } else if (number < 10000 * ONE_M) {
+ } else if (number < 10000ULL * ONE_M) {
However, the whole line is now patently silly, because the
variable "number" is typed "unsigned long", and so it will
always be less than the constant expression (the compiler
will warn about this, too).
Hence, "number" must be typed "unsigned long long"; however,
this necessitates changing all of the string formats from
something like "%lu" to something like "%llu".
Et voila! This commit is born.
Then, for the sake of completeness, the declared types of the
constant-expression macros are updated:
o ONE_K is made unsigned (a "UL" instead of "L")
o ONE_T is computed by introducing "1ULL *"
o Similar changes are made for ONE_DECIMAL_{K,T}
Also, a non-portable overflow-conversion to a signed value
has been replaced with a portable comparison:
- if ((long long) number == -1LL) {
+ if (number == ULLONG_MAX) {
It might be worth reviewing the rest of the code for other
cases where overflows are not handled correctly; even at
runtime, it's often necessary to check for overflow unless
such behavior is expected (especially for signed integer
values, for which overflow has implementation-defined
behavior).
2020-09-29 14:04:22 +00:00
|
|
|
#define ONE_DECIMAL_T (1ULL * ONE_DECIMAL_G * ONE_DECIMAL_K)
|
2014-02-27 19:35:22 +00:00
|
|
|
|
2020-09-08 12:28:34 +00:00
|
|
|
void Process_setupColumnWidths(void);
|
2015-08-20 03:32:47 +00:00
|
|
|
|
Process.{h,c}: Use integer types that are more portable
When building on a 32-bit system, the compiler warned that the
following line uses a constant whose value is the overflow result
of a compile-time computation:
Process.c (line 109): } else if (number < 10000 * ONE_M) {
Namely, this constant expression:
10000 * ONE_M
was intended to produce the following value:
10485760000
However, the result overflowed to produce:
1895825408
The reason for this overflow is as follows:
o The macros are expanded:
10000 * (ONE_K * ONE_K)
10000 * (1024L * 1024L)
o The untyped constant expression "10000" is typed:
10000U * (1024L * 1024L)
o The parenthesized expression is evaluated:
10000U * (1048576L)
o The left operand ("10000U") is converted:
10000L * (1048576L)
Unbound by integer sizes, that last multiplication
would produce the following value:
10485760000
However, on a 32-bit machine, where a long is 32 bits
(really 31 bits when talking about positive numbers),
the maximum value that can be computed is 2**31-1:
2147483647
Consequently, the computation overflows.
o The compiler produces a long int value that is the
the result of overflow (10485760000 % 2**31):
1895825408L
Actually, I think this overflow is implementation-defined,
so it's not even a portable description of what happens.
The solution is to use a long long int (or, even better,
an unsigned long long int) type for the constant expression;
the C standard mandates a sufficiently large maximum value
for such types.
Hence, the following change is made to the bad line:
- } else if (number < 10000 * ONE_M) {
+ } else if (number < 10000ULL * ONE_M) {
However, the whole line is now patently silly, because the
variable "number" is typed "unsigned long", and so it will
always be less than the constant expression (the compiler
will warn about this, too).
Hence, "number" must be typed "unsigned long long"; however,
this necessitates changing all of the string formats from
something like "%lu" to something like "%llu".
Et voila! This commit is born.
Then, for the sake of completeness, the declared types of the
constant-expression macros are updated:
o ONE_K is made unsigned (a "UL" instead of "L")
o ONE_T is computed by introducing "1ULL *"
o Similar changes are made for ONE_DECIMAL_{K,T}
Also, a non-portable overflow-conversion to a signed value
has been replaced with a portable comparison:
- if ((long long) number == -1LL) {
+ if (number == ULLONG_MAX) {
It might be worth reviewing the rest of the code for other
cases where overflows are not handled correctly; even at
runtime, it's often necessary to check for overflow unless
such behavior is expected (especially for signed integer
values, for which overflow has implementation-defined
behavior).
2020-09-29 14:04:22 +00:00
|
|
|
void Process_humanNumber(RichString* str, unsigned long long number, bool coloring);
|
2015-03-16 04:43:04 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void Process_colorNumber(RichString* str, unsigned long long number, bool coloring);
|
2015-03-16 04:43:04 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void Process_printTime(RichString* str, unsigned long long totalHundredths);
|
2015-03-16 04:43:04 +00:00
|
|
|
|
2020-10-13 12:26:40 +00:00
|
|
|
void Process_fillStarttimeBuffer(Process* this);
|
|
|
|
|
2020-11-24 17:37:13 +00:00
|
|
|
void Process_outputRate(RichString* str, char* buffer, size_t n, double rate, int coloring);
|
2015-03-16 04:43:04 +00:00
|
|
|
|
2020-10-06 10:28:11 +00:00
|
|
|
void Process_display(const Object* cast, RichString* out);
|
2015-01-22 01:27:31 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void Process_done(Process* this);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-10-05 11:19:50 +00:00
|
|
|
extern const ProcessClass Process_class;
|
2012-12-05 15:12:20 +00:00
|
|
|
|
2020-10-21 19:26:05 +00:00
|
|
|
void Process_init(Process* this, const struct Settings_* settings);
|
2008-03-09 08:58:38 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void Process_toggleTag(Process* this);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-10-31 01:56:16 +00:00
|
|
|
bool Process_isNew(const Process* this);
|
|
|
|
|
|
|
|
bool Process_isTomb(const Process* this);
|
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
bool Process_setPriority(Process* this, int priority);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
bool Process_changePriorityBy(Process* this, Arg delta);
|
2012-10-04 23:59:45 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
bool Process_sendSignal(Process* this, Arg sgn);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-12-23 12:02:32 +00:00
|
|
|
int Process_pidCompare(const void* v1, const void* v2);
|
2006-07-11 06:13:32 +00:00
|
|
|
|
2020-12-23 12:02:32 +00:00
|
|
|
int Process_compareByKey_Base(const Process* p1, const Process* p2, ProcessField key);
|
2020-12-18 21:12:26 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
#endif
|