summaryrefslogtreecommitdiffstats
path: root/openbsd
diff options
context:
space:
mode:
authorBenny Baumann <BenBE@geshi.org>2020-10-31 22:14:27 +0100
committerBenny Baumann <BenBE@geshi.org>2020-11-02 22:15:01 +0100
commitb23f8235e28472c410dcb00893e0e3d403892673 (patch)
treeaecb7abcfa9f48caf43c21c54544cb21c2f65112 /openbsd
parent9a16b1079ec1e831a449eb23ff23bf13b1b2a935 (diff)
Whitespace and indentation issues
Diffstat (limited to 'openbsd')
-rw-r--r--openbsd/OpenBSDProcess.c75
-rw-r--r--openbsd/Platform.c10
2 files changed, 55 insertions, 30 deletions
diff --git a/openbsd/OpenBSDProcess.c b/openbsd/OpenBSDProcess.c
index c43fe2fc..5eb61b16 100644
--- a/openbsd/OpenBSDProcess.c
+++ b/openbsd/OpenBSDProcess.c
@@ -32,127 +32,152 @@ ProcessFieldData Process_fields[] = {
.name = "",
.title = NULL,
.description = NULL,
- .flags = 0, },
+ .flags = 0,
+ },
[PID] = {
.name = "PID",
.title = " PID ",
.description = "Process/thread ID",
- .flags = 0, },
+ .flags = 0,
+ },
[COMM] = {
.name = "Command",
.title = "Command ",
.description = "Command line",
- .flags = 0, },
+ .flags = 0,
+ },
[STATE] = {
.name = "STATE",
.title = "S ",
.description = "Process state (S sleeping, R running, D disk, Z zombie, T traced, W paging)",
- .flags = 0, },
+ .flags = 0,
+ },
[PPID] = {
.name = "PPID",
.title = " PPID ",
.description = "Parent process ID",
- .flags = 0, },
+ .flags = 0,
+ },
[PGRP] = {
.name = "PGRP",
.title = " PGRP ",
.description = "Process group ID",
- .flags = 0, },
+ .flags = 0,
+ },
[SESSION] = {
.name = "SESSION",
.title = " SESN ",
.description = "Process's session ID",
- .flags = 0, },
+ .flags = 0,
+ },
[TTY_NR] = {
.name = "TTY_NR",
.title = " TTY ",
.description = "Controlling terminal",
- .flags = 0, },
+ .flags = 0,
+ },
[TPGID] = {
.name = "TPGID",
.title = " TPGID ",
.description = "Process ID of the fg process group of the controlling terminal",
- .flags = 0, },
+ .flags = 0,
+ },
[MINFLT] = {
.name = "MINFLT",
.title = " MINFLT ",
.description = "Number of minor faults which have not required loading a memory page from disk",
- .flags = 0, },
+ .flags = 0,
+ },
[MAJFLT] = {
.name = "MAJFLT",
.title = " MAJFLT ",
.description = "Number of major faults which have required loading a memory page from disk",
- .flags = 0, },
+ .flags = 0,
+ },
[PRIORITY] = {
.name = "PRIORITY",
.title = "PRI ",
.description = "Kernel's internal priority for the process",
- .flags = 0, },
+ .flags = 0,
+ },
[NICE] = {
.name = "NICE",
.title = " NI ",
.description = "Nice value (the higher the value, the more it lets other processes take priority)",
- .flags = 0, },
+ .flags = 0,
+ },
[STARTTIME] = {
.name = "STARTTIME",
.title = "START ",
.description = "Time the process was started",
- .flags = 0, },
+ .flags = 0,
+ },
[PROCESSOR] = {
.name = "PROCESSOR",
.title = "CPU ",
.description = "Id of the CPU the process last executed on",
- .flags = 0, },
+ .flags = 0,
+ },
[M_SIZE] = {
.name = "M_SIZE",
.title = " VIRT ",
.description = "Total program size in virtual memory",
- .flags = 0, },
+ .flags = 0,
+ },
[M_RESIDENT] = {
.name = "M_RESIDENT",
.title = " RES ",
.description = "Resident set size, size of the text and data sections, plus stack usage",
- .flags = 0, },
+ .flags = 0,
+ },
[ST_UID] = {
.name = "ST_UID",
.title = " UID ",
.description = "User ID of the process owner",
- .flags = 0, },
+ .flags = 0,
+ },
[PERCENT_CPU] = {
.name = "PERCENT_CPU",
.title = "CPU% ",
.description = "Percentage of the CPU time the process used in the last sampling",
- .flags = 0, },
+ .flags = 0,
+ },
[PERCENT_MEM] = {
.name = "PERCENT_MEM",
.title = "MEM% ",
.description = "Percentage of the memory the process is using, based on resident memory size",
- .flags = 0, },
+ .flags = 0,
+ },
[USER] = {
.name = "USER",
.title = "USER ",
.description = "Username of the process owner (or user ID if name cannot be determined)",
- .flags = 0, },
+ .flags = 0,
+ },
[TIME] = {
.name = "TIME",
.title = " TIME+ ",
.description = "Total time the process has spent in user and system time",
- .flags = 0, },
+ .flags = 0,
+ },
[NLWP] = {
.name = "NLWP",
.title = "NLWP ",
.description = "Number of threads in the process",
- .flags = 0, },
+ .flags = 0,
+ },
[TGID] = {
.name = "TGID",
.title = " TGID ",
.description = "Thread group ID (i.e. process ID)",
- .flags = 0, },
+ .flags = 0,
+ },
[LAST_PROCESSFIELD] = {
.name = "*** report bug! ***",
.title = NULL,
.description = NULL,
- .flags = 0, },
+ .flags = 0,
+ },
};
ProcessPidColumn Process_pidColumns[] = {
diff --git a/openbsd/Platform.c b/openbsd/Platform.c
index df6bc0cc..d9737c39 100644
--- a/openbsd/Platform.c
+++ b/openbsd/Platform.c
@@ -254,7 +254,7 @@ char* Platform_getProcessEnv(pid_t pid) {
return NULL;
if ((kproc = kvm_getprocs(kt, KERN_PROC_PID, pid,
- sizeof(struct kinfo_proc), &count)) == NULL) {\
+ sizeof(struct kinfo_proc), &count)) == NULL) {
(void) kvm_close(kt);
return NULL;
}
@@ -278,10 +278,10 @@ char* Platform_getProcessEnv(pid_t pid) {
}
if (size < 2 || env[size - 1] || env[size - 2]) {
- if (size + 2 < capacity)
- env = xRealloc(env, capacity + 2);
- env[size] = 0;
- env[size+1] = 0;
+ if (size + 2 < capacity)
+ env = xRealloc(env, capacity + 2);
+ env[size] = 0;
+ env[size + 1] = 0;
}
(void) kvm_close(kt);

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