2011-12-26 21:35:57 +00:00
|
|
|
/*
|
|
|
|
htop - SignalsPanel.c
|
|
|
|
(C) 2004-2011 Hisham H. Muhammad
|
2021-09-22 09:33:00 +00:00
|
|
|
Released under the GNU GPLv2+, see the COPYING file
|
2011-12-26 21:35:57 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2006-05-30 13:47:28 +00:00
|
|
|
#include "SignalsPanel.h"
|
2011-12-26 21:35:57 +00:00
|
|
|
|
2015-10-06 15:50:31 +00:00
|
|
|
#include <signal.h>
|
2020-09-19 11:55:23 +00:00
|
|
|
#include <stdbool.h>
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "FunctionBar.h"
|
2020-09-19 18:22:34 +00:00
|
|
|
#include "ListItem.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "Object.h"
|
|
|
|
#include "Panel.h"
|
2020-09-19 18:22:34 +00:00
|
|
|
#include "Platform.h"
|
2020-10-14 18:21:09 +00:00
|
|
|
#include "XUtils.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
|
2012-12-05 15:12:20 +00:00
|
|
|
Panel* SignalsPanel_new() {
|
2021-01-02 22:51:53 +00:00
|
|
|
Panel* this = Panel_new(1, 1, 1, 1, Class(ListItem), true, FunctionBar_newEnterEsc("Send ", "Cancel "));
|
2015-10-06 15:50:31 +00:00
|
|
|
const int defaultSignal = SIGTERM;
|
|
|
|
int defaultPosition = 15;
|
2016-09-14 13:47:24 +00:00
|
|
|
unsigned int i;
|
|
|
|
for (i = 0; i < Platform_numberOfSignals; i++) {
|
2015-10-06 06:02:49 +00:00
|
|
|
Panel_set(this, i, (Object*) ListItem_new(Platform_signals[i].name, Platform_signals[i].number));
|
2015-10-06 15:50:31 +00:00
|
|
|
// signal 15 is not always the 15th signal in the table
|
|
|
|
if (Platform_signals[i].number == defaultSignal) {
|
|
|
|
defaultPosition = i;
|
|
|
|
}
|
|
|
|
}
|
2016-09-14 13:47:24 +00:00
|
|
|
#if (defined(SIGRTMIN) && defined(SIGRTMAX))
|
2016-09-16 16:37:07 +00:00
|
|
|
if (SIGRTMAX - SIGRTMIN <= 100) {
|
2018-03-25 18:15:37 +00:00
|
|
|
static char buf[16];
|
2016-09-16 16:37:07 +00:00
|
|
|
for (int sig = SIGRTMIN; sig <= SIGRTMAX; i++, sig++) {
|
2016-09-14 13:47:24 +00:00
|
|
|
int n = sig - SIGRTMIN;
|
2020-11-28 18:33:07 +00:00
|
|
|
xSnprintf(buf, sizeof(buf), "%2d SIGRTMIN%-+3d", sig, n);
|
2016-09-14 13:47:24 +00:00
|
|
|
if (n == 0) {
|
|
|
|
buf[11] = '\0';
|
|
|
|
}
|
2016-09-16 16:37:07 +00:00
|
|
|
Panel_set(this, i, (Object*) ListItem_new(buf, sig));
|
2016-09-14 13:47:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2012-12-05 15:12:20 +00:00
|
|
|
Panel_setHeader(this, "Send signal:");
|
2015-10-06 15:50:31 +00:00
|
|
|
Panel_setSelected(this, defaultPosition);
|
2008-03-09 08:58:38 +00:00
|
|
|
return this;
|
|
|
|
}
|