summaryrefslogtreecommitdiffstats
path: root/openbsd
diff options
context:
space:
mode:
authorMichael McConville <mmcco@mykolab.com>2016-01-02 11:57:53 -0500
committerMichael McConville <mmcco@mykolab.com>2016-01-02 11:57:53 -0500
commit22cfda6332bcfe89e143ed9475032bec7222bfa3 (patch)
treed634f5181397ff87cc9a8e464bb7802182d7f274 /openbsd
parentfd5dd6605adfa15c28eb16c9081e1df977724c78 (diff)
OpenBSD fixes and updates
I forgot how awful the process name logic was. It was an initial hack to get it running, and I forgot to clean it up. I also had to change a few includes and error function uses.
Diffstat (limited to 'openbsd')
-rw-r--r--openbsd/OpenBSDProcessList.c56
-rw-r--r--openbsd/Platform.h1
2 files changed, 28 insertions, 29 deletions
diff --git a/openbsd/OpenBSDProcessList.c b/openbsd/OpenBSDProcessList.c
index 210328aa..eb4cd2e7 100644
--- a/openbsd/OpenBSDProcessList.c
+++ b/openbsd/OpenBSDProcessList.c
@@ -12,6 +12,7 @@ in the source distribution for its full text.
#include <unistd.h>
#include <stdlib.h>
+#include <err.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/param.h>
@@ -59,7 +60,7 @@ ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidWhiteList, ui
size = sizeof(fscale);
if (sysctl(fmib, 2, &fscale, &size, NULL, 0) < 0)
- CRT_fatalError("fscale sysctl call failed");
+ errx(1, "fscale sysctl call failed");
for (i = 0; i < pl->cpuCount; i++) {
fpl->cpus[i].totalTime = 1;
@@ -89,7 +90,7 @@ static inline void OpenBSDProcessList_scanMemoryInfo(ProcessList* pl) {
size_t size = sizeof(uvmexp);
if (sysctl(uvmexp_mib, 2, &uvmexp, &size, NULL, 0) < 0) {
- CRT_fatalError("uvmexp sysctl call failed");
+ errx(1, "uvmexp sysctl call failed");
}
//kb_pagesize = uvmexp.pagesize / 1024;
@@ -125,34 +126,31 @@ static inline void OpenBSDProcessList_scanMemoryInfo(ProcessList* pl) {
}
char *OpenBSDProcessList_readProcessName(kvm_t* kd, struct kinfo_proc* kproc, int* basenameEnd) {
- char *str, *buf, **argv;
- size_t cpsz;
- size_t len = 500;
-
- argv = kvm_getargv(kd, kproc, 500);
-
- if (argv == NULL)
- CRT_fatalError("kvm call failed");
-
- str = buf = malloc(len+1);
- if (str == NULL)
- CRT_fatalError("out of memory");
-
- while (*argv != NULL) {
- cpsz = MIN(len, strlen(*argv));
- strncpy(buf, *argv, cpsz);
- buf += cpsz;
- len -= cpsz;
- argv++;
- if (len > 0) {
- *buf = ' ';
- buf++;
- len--;
- }
- }
+ char *s, *buf, **arg;
+ size_t cpsz, len = 0, n;
+ int i;
- *buf = '\0';
- return str;
+ arg = kvm_getargv(kd, kproc, 500);
+ if (arg == NULL) {
+ return "[zombie]";
+ // the FreeBSD port uses ki_comm, but we don't have it
+ //return strndup(kproc->ki_comm);
+ }
+ for (i = 0; arg[i] != NULL; i++) {
+ len += strlen(arg[i]) + 1;
+ }
+ buf = s = malloc(len);
+ for (i = 0; arg[i] != NULL; i++) {
+ n = strlcpy(buf, arg[i], (s + len) - buf);
+ buf += n;
+ if (i == 0) {
+ *basenameEnd = n;
+ }
+ buf++;
+ *buf = ' ';
+ }
+ *(buf - 1) = '\0';
+ return s;
}
/*
diff --git a/openbsd/Platform.h b/openbsd/Platform.h
index a59d2ef5..d8dea1b1 100644
--- a/openbsd/Platform.h
+++ b/openbsd/Platform.h
@@ -11,6 +11,7 @@ in the source distribution for its full text.
*/
#include "Action.h"
+#include "SignalsPanel.h"
#include "BatteryMeter.h"
extern ProcessFieldData Process_fields[];

© 2014-2024 Faster IT GmbH | imprint | privacy policy