summaryrefslogtreecommitdiffstats
path: root/netbsd/NetBSDProcess.c
diff options
context:
space:
mode:
Diffstat (limited to 'netbsd/NetBSDProcess.c')
-rw-r--r--netbsd/NetBSDProcess.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/netbsd/NetBSDProcess.c b/netbsd/NetBSDProcess.c
index be87e3d7..2573d061 100644
--- a/netbsd/NetBSDProcess.c
+++ b/netbsd/NetBSDProcess.c
@@ -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) {