summaryrefslogtreecommitdiffstats
path: root/solaris/Platform.h
diff options
context:
space:
mode:
authorgmbroome <thrirhrafnir@gmail.com>2018-03-27 12:27:12 -0400
committerHisham Muhammad <hisham@gobolinux.org>2018-03-27 13:27:12 -0300
commit42c3a1fcb39458b6f8f39539baef94158bacf164 (patch)
tree10bbdffe3e0b69cd5ede763086931bc38b2f14f3 /solaris/Platform.h
parent1cf8f429a5b672d44c7e87ca21b0a451f581fdae (diff)
Solaris: Implement LWP enumeration (#768)
Squashed the following commits: * Solaris: Get LWP enumeration working * Solaris: Make showing and hiding of kernel threads behave * Solaris: remove usage of lwpstatus that is no longer needed * Solaris: no discrete access to parent proc structure needed * Solaris: Restore runtime MaxPid detection after LWP changes * Solaris: Workaround virtual PID signal issue by shadowing kill() with a macro * Solaris: Fix unintention double-shifting of virtual PID for LWP enumeration * Solaris: Add LWPID to default display since LWP enumeration is also default * Solaris: use PAGE_SIZE_KB from Process.h instead of custom definition * Solaris: stop LWP enumeration at 1023 LWPs per proc since that is all we can handle in the virtual PID
Diffstat (limited to 'solaris/Platform.h')
-rw-r--r--solaris/Platform.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/solaris/Platform.h b/solaris/Platform.h
index 280ed1ff..01ffa59b 100644
--- a/solaris/Platform.h
+++ b/solaris/Platform.h
@@ -14,8 +14,11 @@ in the source distribution for its full text.
#include "Action.h"
#include "BatteryMeter.h"
#include "SignalsPanel.h"
+#include <signal.h>
#include <sys/mkdev.h>
+#define kill(pid, signal) kill(pid / 1024, signal)
+
extern ProcessFieldData Process_fields[];
typedef struct var kvar_t;

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