mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-13 12:44:34 +03:00
Adds support for PROC_EXE and CWD.
This commit is contained in:
@ -195,6 +195,19 @@ const ProcessFieldData Process_fields[LAST_PROCESSFIELD] = {
|
||||
.description = "comm string of the process",
|
||||
.flags = 0,
|
||||
},
|
||||
[PROC_EXE] = {
|
||||
.name = "EXE",
|
||||
.title = "EXE ",
|
||||
.description = "Basename of exe of the process",
|
||||
.flags = 0,
|
||||
},
|
||||
[CWD] = {
|
||||
.name = "CWD",
|
||||
.title = "CWD ",
|
||||
.description = "The current working directory of the process",
|
||||
.flags = PROCESS_FLAG_CWD,
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
Process* NetBSDProcess_new(const Settings* settings) {
|
||||
|
Reference in New Issue
Block a user