2006-03-04 18:16:49 +00:00
|
|
|
/*
|
|
|
|
htop - htop.c
|
2008-03-05 06:51:32 +00:00
|
|
|
(C) 2004-2008 Hisham H. Muhammad
|
2006-03-04 18:16:49 +00:00
|
|
|
Released under the GNU GPL, see the COPYING file
|
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdbool.h>
|
2008-03-09 02:33:23 +00:00
|
|
|
#include <locale.h>
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
#include "ProcessList.h"
|
|
|
|
#include "CRT.h"
|
2006-05-30 13:47:28 +00:00
|
|
|
#include "Panel.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
#include "UsersTable.h"
|
|
|
|
#include "SignalItem.h"
|
|
|
|
#include "RichString.h"
|
|
|
|
#include "Settings.h"
|
|
|
|
#include "ScreenManager.h"
|
|
|
|
#include "FunctionBar.h"
|
|
|
|
#include "ListItem.h"
|
2006-05-30 13:47:28 +00:00
|
|
|
#include "CategoriesPanel.h"
|
|
|
|
#include "SignalsPanel.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
#include "TraceScreen.h"
|
2007-11-08 23:23:01 +00:00
|
|
|
#include "AffinityPanel.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2006-03-23 18:59:54 +00:00
|
|
|
#include "config.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
//#link m
|
|
|
|
|
|
|
|
#define INCSEARCH_MAX 40
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
static void printVersionFlag() {
|
2006-03-04 18:16:49 +00:00
|
|
|
clear();
|
2008-03-05 06:52:22 +00:00
|
|
|
printf("htop " VERSION " - (C) 2004-2008 Hisham Muhammad.\n");
|
2006-03-04 18:16:49 +00:00
|
|
|
printf("Released under the GNU GPL.\n\n");
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
static void printHelpFlag() {
|
2006-03-04 18:16:49 +00:00
|
|
|
clear();
|
2008-03-05 06:52:22 +00:00
|
|
|
printf("htop " VERSION " - (C) 2004-2008 Hisham Muhammad.\n");
|
2006-03-04 18:16:49 +00:00
|
|
|
printf("Released under the GNU GPL.\n\n");
|
|
|
|
printf("-d DELAY Delay between updates, in tenths of seconds\n\n");
|
|
|
|
printf("-u USERNAME Show only processes of a given user\n\n");
|
2006-08-04 20:54:37 +00:00
|
|
|
printf("--sort-key COLUMN Sort by this column (use --sort-key help for a column list)\n\n");
|
2006-03-04 18:16:49 +00:00
|
|
|
printf("Press F1 inside htop for online help.\n");
|
|
|
|
printf("See the man page for full information.\n\n");
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
static void showHelp(ProcessList* pl) {
|
2006-03-04 18:16:49 +00:00
|
|
|
clear();
|
|
|
|
attrset(CRT_colors[HELP_BOLD]);
|
2008-03-08 23:30:35 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < LINES-1; i++)
|
|
|
|
mvhline(i, 0, ' ', COLS);
|
|
|
|
|
2008-03-05 06:52:22 +00:00
|
|
|
mvaddstr(0, 0, "htop " VERSION " - (C) 2004-2008 Hisham Muhammad.");
|
2006-03-04 18:16:49 +00:00
|
|
|
mvaddstr(1, 0, "Released under the GNU GPL. See 'man' page for more info.");
|
|
|
|
|
|
|
|
attrset(CRT_colors[DEFAULT_COLOR]);
|
|
|
|
mvaddstr(3, 0, "CPU usage bar: ");
|
|
|
|
#define addattrstr(a,s) attrset(a);addstr(s)
|
|
|
|
addattrstr(CRT_colors[BAR_BORDER], "[");
|
2007-11-09 00:40:59 +00:00
|
|
|
if (pl->detailedCPUTime) {
|
2006-10-04 14:21:27 +00:00
|
|
|
addattrstr(CRT_colors[CPU_NICE], "low"); addstr("/");
|
|
|
|
addattrstr(CRT_colors[CPU_NORMAL], "normal"); addstr("/");
|
|
|
|
addattrstr(CRT_colors[CPU_KERNEL], "kernel"); addstr("/");
|
|
|
|
addattrstr(CRT_colors[CPU_IRQ], "irq"); addstr("/");
|
2007-11-09 00:40:59 +00:00
|
|
|
addattrstr(CRT_colors[CPU_SOFTIRQ], "soft-irq"); addstr("/");
|
|
|
|
addattrstr(CRT_colors[CPU_IOWAIT], "io-wait");
|
2006-10-04 14:21:27 +00:00
|
|
|
addattrstr(CRT_colors[BAR_SHADOW], " used%");
|
|
|
|
} else {
|
|
|
|
addattrstr(CRT_colors[CPU_NICE], "low-priority"); addstr("/");
|
|
|
|
addattrstr(CRT_colors[CPU_NORMAL], "normal"); addstr("/");
|
|
|
|
addattrstr(CRT_colors[CPU_KERNEL], "kernel");
|
|
|
|
addattrstr(CRT_colors[BAR_SHADOW], " used%");
|
|
|
|
}
|
2006-03-04 18:16:49 +00:00
|
|
|
addattrstr(CRT_colors[BAR_BORDER], "]");
|
|
|
|
attrset(CRT_colors[DEFAULT_COLOR]);
|
|
|
|
mvaddstr(4, 0, "Memory bar: ");
|
|
|
|
addattrstr(CRT_colors[BAR_BORDER], "[");
|
|
|
|
addattrstr(CRT_colors[MEMORY_USED], "used"); addstr("/");
|
|
|
|
addattrstr(CRT_colors[MEMORY_BUFFERS], "buffers"); addstr("/");
|
|
|
|
addattrstr(CRT_colors[MEMORY_CACHE], "cache");
|
2006-10-04 14:21:27 +00:00
|
|
|
addattrstr(CRT_colors[BAR_SHADOW], " used/total");
|
2006-03-04 18:16:49 +00:00
|
|
|
addattrstr(CRT_colors[BAR_BORDER], "]");
|
|
|
|
attrset(CRT_colors[DEFAULT_COLOR]);
|
|
|
|
mvaddstr(5, 0, "Swap bar: ");
|
|
|
|
addattrstr(CRT_colors[BAR_BORDER], "[");
|
|
|
|
addattrstr(CRT_colors[SWAP], "used");
|
2006-10-04 14:21:27 +00:00
|
|
|
addattrstr(CRT_colors[BAR_SHADOW], " used/total");
|
2006-03-04 18:16:49 +00:00
|
|
|
addattrstr(CRT_colors[BAR_BORDER], "]");
|
|
|
|
attrset(CRT_colors[DEFAULT_COLOR]);
|
2006-10-04 14:21:27 +00:00
|
|
|
mvaddstr(6,0, "Type and layout of header meters are configurable in the setup screen.");
|
2009-02-18 00:34:18 +00:00
|
|
|
if (CRT_colorScheme == COLORSCHEME_MONOCHROME) {
|
|
|
|
mvaddstr(7, 0, "In monochrome, meters are displayed through different chars, in order: |#*@$%&");
|
|
|
|
}
|
|
|
|
mvaddstr( 8, 0, " Status: R: running; S: sleeping; T: traced/stopped; Z: zombie; D: disk sleep");
|
2006-11-16 15:20:44 +00:00
|
|
|
mvaddstr( 9, 0, " Arrows: scroll process list F5 t: tree view");
|
|
|
|
mvaddstr(10, 0, " Digits: incremental PID search u: show processes of a single user");
|
|
|
|
mvaddstr(11, 0, " F3 /: incremental name search H: hide/show user threads");
|
|
|
|
mvaddstr(12, 0, " K: hide/show kernel threads");
|
|
|
|
mvaddstr(13, 0, " Space: tag processes F: cursor follows process");
|
|
|
|
mvaddstr(14, 0, " U: untag all processes");
|
|
|
|
mvaddstr(15, 0, " F9 k: kill process/tagged processes P: sort by CPU%");
|
|
|
|
mvaddstr(16, 0, " + [ F7: lower priority (+ nice) M: sort by MEM%");
|
|
|
|
mvaddstr(17, 0, " - ] F8: higher priority (root only) T: sort by TIME");
|
2009-03-11 13:15:43 +00:00
|
|
|
#ifdef HAVE_PLPA
|
2007-11-08 23:23:01 +00:00
|
|
|
if (pl->processorCount > 1)
|
|
|
|
mvaddstr(18, 0, " a: set CPU affinity F4 I: invert sort order");
|
|
|
|
else
|
2009-03-11 13:15:43 +00:00
|
|
|
#endif
|
2007-11-08 23:23:01 +00:00
|
|
|
mvaddstr(18, 0, " F4 I: invert sort order");
|
2006-11-16 15:20:44 +00:00
|
|
|
mvaddstr(19, 0, " F2 S: setup F6 >: select sort column");
|
|
|
|
mvaddstr(20, 0, " F1 h: show this help screen");
|
|
|
|
mvaddstr(21, 0, " F10 q: quit s: trace syscalls with strace");
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
attrset(CRT_colors[HELP_BOLD]);
|
2006-11-16 15:20:44 +00:00
|
|
|
mvaddstr( 9, 0, " Arrows"); mvaddstr( 9,40, " F5 t");
|
|
|
|
mvaddstr(10, 0, " Digits"); mvaddstr(10,40, " u");
|
|
|
|
mvaddstr(11, 0, " F3 /"); mvaddstr(11,40, " H");
|
|
|
|
mvaddstr(12,40, " K");
|
|
|
|
mvaddstr(13, 0, " Space"); mvaddstr(13,40, " F");
|
|
|
|
mvaddstr(14, 0, " U");
|
|
|
|
mvaddstr(15, 0, " F9 k"); mvaddstr(15,40, " P");
|
|
|
|
mvaddstr(16, 0, " + [ F7"); mvaddstr(16,40, " M");
|
|
|
|
mvaddstr(17, 0, " - ] F8"); mvaddstr(17,40, " T");
|
|
|
|
mvaddstr(18,40, " F4 I");
|
2009-03-11 13:15:43 +00:00
|
|
|
#if HAVE_PLPA
|
2007-11-08 23:23:01 +00:00
|
|
|
if (pl->processorCount > 1)
|
|
|
|
mvaddstr(18, 0, " a:");
|
2009-03-11 13:15:43 +00:00
|
|
|
#endif
|
2006-11-16 15:20:44 +00:00
|
|
|
mvaddstr(19, 0, " F2 S"); mvaddstr(19,40, " F6 >");
|
|
|
|
mvaddstr(20, 0, " F1 h");
|
|
|
|
mvaddstr(21, 0, " F10 q"); mvaddstr(21,40, " s");
|
2006-03-04 18:16:49 +00:00
|
|
|
attrset(CRT_colors[DEFAULT_COLOR]);
|
|
|
|
|
|
|
|
attrset(CRT_colors[HELP_BOLD]);
|
|
|
|
mvaddstr(23,0, "Press any key to return.");
|
|
|
|
attrset(CRT_colors[DEFAULT_COLOR]);
|
|
|
|
refresh();
|
|
|
|
CRT_readKey();
|
|
|
|
clear();
|
|
|
|
}
|
|
|
|
|
2008-04-23 07:24:27 +00:00
|
|
|
static char* CategoriesFunctions[10] = {" ", " ", " ", " ", " ", " ", " ", " ", " ", "Done "};
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
static void Setup_run(Settings* settings, int headerHeight) {
|
|
|
|
ScreenManager* scr = ScreenManager_new(0, headerHeight, 0, -1, HORIZONTAL, true);
|
2006-05-30 14:00:18 +00:00
|
|
|
CategoriesPanel* panelCategories = CategoriesPanel_new(settings, scr);
|
2008-04-23 07:24:27 +00:00
|
|
|
ScreenManager_add(scr, (Panel*) panelCategories, FunctionBar_new(10, CategoriesFunctions, NULL, NULL), 16);
|
2006-05-30 14:00:18 +00:00
|
|
|
CategoriesPanel_makeMetersPage(panelCategories);
|
|
|
|
Panel* panelFocus;
|
2006-03-04 18:16:49 +00:00
|
|
|
int ch;
|
2006-05-30 14:00:18 +00:00
|
|
|
ScreenManager_run(scr, &panelFocus, &ch);
|
2006-03-04 18:16:49 +00:00
|
|
|
ScreenManager_delete(scr);
|
|
|
|
}
|
|
|
|
|
2006-05-30 14:00:18 +00:00
|
|
|
static bool changePriority(Panel* panel, int delta) {
|
2007-12-17 05:57:28 +00:00
|
|
|
bool ok = true;
|
2006-03-04 18:16:49 +00:00
|
|
|
bool anyTagged = false;
|
2006-05-30 14:00:18 +00:00
|
|
|
for (int i = 0; i < Panel_getSize(panel); i++) {
|
|
|
|
Process* p = (Process*) Panel_get(panel, i);
|
2006-03-04 18:16:49 +00:00
|
|
|
if (p->tag) {
|
2007-12-17 05:57:28 +00:00
|
|
|
ok = Process_setPriority(p, p->nice + delta) && ok;
|
2006-03-04 18:16:49 +00:00
|
|
|
anyTagged = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!anyTagged) {
|
2006-05-30 14:00:18 +00:00
|
|
|
Process* p = (Process*) Panel_getSelected(panel);
|
2007-12-17 05:57:28 +00:00
|
|
|
ok = Process_setPriority(p, p->nice + delta) && ok;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
2007-12-17 05:57:28 +00:00
|
|
|
if (!ok)
|
|
|
|
beep();
|
2006-03-04 18:16:49 +00:00
|
|
|
return anyTagged;
|
|
|
|
}
|
|
|
|
|
2006-05-30 14:00:18 +00:00
|
|
|
static HandlerResult pickWithEnter(Panel* panel, int ch) {
|
2006-03-04 18:16:49 +00:00
|
|
|
if (ch == 13)
|
|
|
|
return BREAK_LOOP;
|
|
|
|
return IGNORED;
|
|
|
|
}
|
|
|
|
|
2006-05-30 14:00:18 +00:00
|
|
|
static Object* pickFromList(Panel* panel, Panel* list, int x, int y, char** keyLabels, FunctionBar* prevBar) {
|
2006-03-04 18:16:49 +00:00
|
|
|
char* fuKeys[2] = {"Enter", "Esc"};
|
|
|
|
int fuEvents[2] = {13, 27};
|
2007-11-08 23:23:01 +00:00
|
|
|
if (!list->eventHandler)
|
2006-05-30 13:47:28 +00:00
|
|
|
Panel_setEventHandler(list, pickWithEnter);
|
2006-03-04 18:16:49 +00:00
|
|
|
ScreenManager* scr = ScreenManager_new(0, y, 0, -1, HORIZONTAL, false);
|
|
|
|
ScreenManager_add(scr, list, FunctionBar_new(2, keyLabels, fuKeys, fuEvents), x - 1);
|
2006-05-30 14:00:18 +00:00
|
|
|
ScreenManager_add(scr, panel, NULL, -1);
|
|
|
|
Panel* panelFocus;
|
2006-03-04 18:16:49 +00:00
|
|
|
int ch;
|
2006-05-30 14:00:18 +00:00
|
|
|
ScreenManager_run(scr, &panelFocus, &ch);
|
2006-03-04 18:16:49 +00:00
|
|
|
ScreenManager_delete(scr);
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_move(panel, 0, y);
|
|
|
|
Panel_resize(panel, COLS, LINES-y-1);
|
2006-03-04 18:16:49 +00:00
|
|
|
FunctionBar_draw(prevBar, NULL);
|
2006-05-30 14:00:18 +00:00
|
|
|
if (panelFocus == list && ch == 13) {
|
2006-05-30 13:47:28 +00:00
|
|
|
return Panel_getSelected(list);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
static void addUserToList(int key, void* userCast, void* panelCast) {
|
2006-03-04 18:16:49 +00:00
|
|
|
char* user = (char*) userCast;
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel* panel = (Panel*) panelCast;
|
|
|
|
Panel_add(panel, (Object*) ListItem_new(user, key));
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
static void setUserOnly(const char* userName, bool* userOnly, uid_t* userId) {
|
2006-03-04 18:16:49 +00:00
|
|
|
struct passwd* user = getpwnam(userName);
|
|
|
|
if (user) {
|
|
|
|
*userOnly = true;
|
|
|
|
*userId = user->pw_uid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-14 18:50:49 +00:00
|
|
|
static inline void setSortKey(ProcessList* pl, ProcessField sortKey, Panel* panel, Settings* settings) {
|
|
|
|
pl->sortKey = sortKey;
|
|
|
|
pl->direction = 1;
|
|
|
|
pl->treeView = false;
|
|
|
|
settings->changed = true;
|
|
|
|
Panel_setRichHeader(panel, ProcessList_printHeader(pl));
|
|
|
|
}
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
int main(int argc, char** argv) {
|
|
|
|
|
|
|
|
int delay = -1;
|
|
|
|
bool userOnly = false;
|
|
|
|
uid_t userId = 0;
|
2006-08-04 20:54:37 +00:00
|
|
|
int sortKey = 0;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2008-03-09 02:33:23 +00:00
|
|
|
char *lc_ctype = getenv("LC_CTYPE");
|
|
|
|
if(lc_ctype != NULL)
|
|
|
|
setlocale(LC_CTYPE, lc_ctype);
|
|
|
|
else
|
|
|
|
setlocale(LC_CTYPE, getenv("LC_ALL"));
|
|
|
|
|
2007-08-10 06:13:13 +00:00
|
|
|
int arg = 1;
|
|
|
|
while (arg < argc) {
|
|
|
|
if (String_eq(argv[arg], "--help")) {
|
2006-03-04 18:16:49 +00:00
|
|
|
printHelpFlag();
|
2007-08-10 06:13:13 +00:00
|
|
|
} else if (String_eq(argv[arg], "--version")) {
|
2006-03-04 18:16:49 +00:00
|
|
|
printVersionFlag();
|
2007-08-10 06:13:13 +00:00
|
|
|
} else if (String_eq(argv[arg], "--sort-key")) {
|
|
|
|
if (arg == argc - 1) printHelpFlag();
|
|
|
|
arg++;
|
|
|
|
char* field = argv[arg];
|
|
|
|
if (String_eq(field, "help")) {
|
2006-08-04 20:54:37 +00:00
|
|
|
for (int j = 1; j < LAST_PROCESSFIELD; j++)
|
|
|
|
printf ("%s\n", Process_fieldNames[j]);
|
|
|
|
exit(0);
|
|
|
|
}
|
2007-08-10 06:13:13 +00:00
|
|
|
sortKey = ColumnsPanel_fieldNameToIndex(field);
|
2006-08-04 20:54:37 +00:00
|
|
|
if (sortKey == -1) {
|
2007-08-10 06:13:13 +00:00
|
|
|
fprintf(stderr, "Error: invalid column \"%s\".\n", field);
|
2006-08-04 20:54:37 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2007-08-10 06:13:13 +00:00
|
|
|
} else if (String_eq(argv[arg], "-d")) {
|
|
|
|
if (arg == argc - 1) printHelpFlag();
|
|
|
|
arg++;
|
|
|
|
sscanf(argv[arg], "%d", &delay);
|
2006-03-04 18:16:49 +00:00
|
|
|
if (delay < 1) delay = 1;
|
|
|
|
if (delay > 100) delay = 100;
|
2007-08-10 06:13:13 +00:00
|
|
|
} else if (String_eq(argv[arg], "-u")) {
|
|
|
|
if (arg == argc - 1) printHelpFlag();
|
|
|
|
arg++;
|
|
|
|
setUserOnly(argv[arg], &userOnly, &userId);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
2007-08-10 06:13:13 +00:00
|
|
|
arg++;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
2006-03-13 17:29:18 +00:00
|
|
|
|
|
|
|
if (access(PROCDIR, R_OK) != 0) {
|
|
|
|
fprintf(stderr, "Error: could not read procfs (compiled to look in %s).\n", PROCDIR);
|
|
|
|
exit(1);
|
|
|
|
}
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel* panel;
|
2006-03-04 18:16:49 +00:00
|
|
|
int quit = 0;
|
|
|
|
int refreshTimeout = 0;
|
|
|
|
int resetRefreshTimeout = 5;
|
|
|
|
bool doRefresh = true;
|
2009-02-17 18:13:25 +00:00
|
|
|
bool doRecalculate = false;
|
2006-03-04 18:16:49 +00:00
|
|
|
Settings* settings;
|
|
|
|
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel* killPanel = NULL;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
char incSearchBuffer[INCSEARCH_MAX];
|
|
|
|
int incSearchIndex = 0;
|
|
|
|
incSearchBuffer[0] = 0;
|
|
|
|
bool incSearchMode = false;
|
|
|
|
|
|
|
|
ProcessList* pl = NULL;
|
|
|
|
UsersTable* ut = UsersTable_new();
|
|
|
|
|
|
|
|
pl = ProcessList_new(ut);
|
|
|
|
|
|
|
|
Header* header = Header_new(pl);
|
|
|
|
settings = Settings_new(pl, header);
|
|
|
|
int headerHeight = Header_calculateHeight(header);
|
|
|
|
|
|
|
|
// FIXME: move delay code to settings
|
|
|
|
if (delay != -1)
|
|
|
|
settings->delay = delay;
|
|
|
|
|
|
|
|
CRT_init(settings->delay, settings->colorScheme);
|
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
panel = Panel_new(0, headerHeight, COLS, LINES - headerHeight - 2, PROCESS_CLASS, false, NULL);
|
2008-03-14 18:50:49 +00:00
|
|
|
if (sortKey > 0) {
|
|
|
|
pl->sortKey = sortKey;
|
|
|
|
pl->treeView = false;
|
|
|
|
pl->direction = 1;
|
|
|
|
}
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_setRichHeader(panel, ProcessList_printHeader(pl));
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
char* searchFunctions[3] = {"Next ", "Exit ", " Search: "};
|
|
|
|
char* searchKeys[3] = {"F3", "Esc", " "};
|
|
|
|
int searchEvents[3] = {KEY_F(3), 27, ERR};
|
|
|
|
FunctionBar* searchBar = FunctionBar_new(3, searchFunctions, searchKeys, searchEvents);
|
|
|
|
|
|
|
|
char* defaultFunctions[10] = {"Help ", "Setup ", "Search", "Invert", "Tree ",
|
|
|
|
"SortBy", "Nice -", "Nice +", "Kill ", "Quit "};
|
|
|
|
FunctionBar* defaultBar = FunctionBar_new(10, defaultFunctions, NULL, NULL);
|
|
|
|
|
|
|
|
ProcessList_scan(pl);
|
|
|
|
usleep(75000);
|
|
|
|
|
|
|
|
FunctionBar_draw(defaultBar, NULL);
|
|
|
|
|
|
|
|
int acc = 0;
|
|
|
|
bool follow = false;
|
|
|
|
|
|
|
|
struct timeval tv;
|
|
|
|
double newTime = 0.0;
|
|
|
|
double oldTime = 0.0;
|
|
|
|
bool recalculate;
|
|
|
|
|
|
|
|
int ch = 0;
|
|
|
|
int closeTimeout = 0;
|
|
|
|
|
|
|
|
while (!quit) {
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
newTime = ((double)tv.tv_sec * 10) + ((double)tv.tv_usec / 100000);
|
|
|
|
recalculate = (newTime - oldTime > CRT_delay);
|
|
|
|
if (recalculate)
|
|
|
|
oldTime = newTime;
|
|
|
|
if (doRefresh) {
|
2006-05-30 14:00:18 +00:00
|
|
|
int currPos = Panel_getSelectedIndex(panel);
|
2007-04-05 19:53:23 +00:00
|
|
|
unsigned int currPid = 0;
|
2006-05-30 14:00:18 +00:00
|
|
|
int currScrollV = panel->scrollV;
|
2006-03-04 18:16:49 +00:00
|
|
|
if (follow)
|
|
|
|
currPid = ProcessList_get(pl, currPos)->pid;
|
2009-02-17 18:13:25 +00:00
|
|
|
if (recalculate || doRecalculate) {
|
2006-03-04 18:16:49 +00:00
|
|
|
ProcessList_scan(pl);
|
2009-02-17 18:13:25 +00:00
|
|
|
doRecalculate = false;
|
|
|
|
}
|
2006-03-04 18:16:49 +00:00
|
|
|
if (refreshTimeout == 0) {
|
|
|
|
ProcessList_sort(pl);
|
|
|
|
refreshTimeout = 1;
|
|
|
|
}
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_prune(panel);
|
2006-03-04 18:16:49 +00:00
|
|
|
int size = ProcessList_size(pl);
|
2006-05-30 14:00:18 +00:00
|
|
|
int index = 0;
|
2006-03-04 18:16:49 +00:00
|
|
|
for (int i = 0; i < size; i++) {
|
|
|
|
Process* p = ProcessList_get(pl, i);
|
|
|
|
if (!userOnly || (p->st_uid == userId)) {
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_set(panel, index, (Object*)p);
|
|
|
|
if ((!follow && index == currPos) || (follow && p->pid == currPid)) {
|
|
|
|
Panel_setSelected(panel, index);
|
|
|
|
panel->scrollV = currScrollV;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
2006-05-30 14:00:18 +00:00
|
|
|
index++;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
doRefresh = true;
|
|
|
|
|
|
|
|
Header_draw(header);
|
|
|
|
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_draw(panel, true);
|
2006-03-04 18:16:49 +00:00
|
|
|
int prev = ch;
|
|
|
|
ch = getch();
|
|
|
|
|
|
|
|
if (ch == ERR) {
|
|
|
|
if (!incSearchMode)
|
|
|
|
refreshTimeout--;
|
|
|
|
if (prev == ch && !recalculate) {
|
|
|
|
closeTimeout++;
|
|
|
|
if (closeTimeout == 10)
|
|
|
|
break;
|
|
|
|
} else
|
|
|
|
closeTimeout = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (incSearchMode) {
|
|
|
|
doRefresh = false;
|
|
|
|
if (ch == KEY_F(3)) {
|
2006-05-30 14:00:18 +00:00
|
|
|
int here = Panel_getSelectedIndex(panel);
|
2006-03-04 18:16:49 +00:00
|
|
|
int size = ProcessList_size(pl);
|
|
|
|
int i = here+1;
|
|
|
|
while (i != here) {
|
|
|
|
if (i == size)
|
|
|
|
i = 0;
|
|
|
|
Process* p = ProcessList_get(pl, i);
|
|
|
|
if (String_contains_i(p->comm, incSearchBuffer)) {
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_setSelected(panel, i);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
} else if (isprint((char)ch) && (incSearchIndex < INCSEARCH_MAX)) {
|
|
|
|
incSearchBuffer[incSearchIndex] = ch;
|
|
|
|
incSearchIndex++;
|
|
|
|
incSearchBuffer[incSearchIndex] = 0;
|
|
|
|
} else if ((ch == KEY_BACKSPACE || ch == 127) && (incSearchIndex > 0)) {
|
|
|
|
incSearchIndex--;
|
|
|
|
incSearchBuffer[incSearchIndex] = 0;
|
|
|
|
} else {
|
|
|
|
incSearchMode = false;
|
|
|
|
FunctionBar_draw(defaultBar, NULL);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool found = false;
|
|
|
|
for (int i = 0; i < ProcessList_size(pl); i++) {
|
|
|
|
Process* p = ProcessList_get(pl, i);
|
|
|
|
if (String_contains_i(p->comm, incSearchBuffer)) {
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_setSelected(panel, i);
|
2006-03-04 18:16:49 +00:00
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (found)
|
|
|
|
FunctionBar_draw(searchBar, incSearchBuffer);
|
|
|
|
else
|
|
|
|
FunctionBar_drawAttr(searchBar, incSearchBuffer, CRT_colors[FAILED_SEARCH]);
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (isdigit((char)ch)) {
|
2007-04-05 19:53:23 +00:00
|
|
|
unsigned int pid = ch-48 + acc;
|
2006-05-30 14:00:18 +00:00
|
|
|
for (int i = 0; i < ProcessList_size(pl) && ((Process*) Panel_getSelected(panel))->pid != pid; i++)
|
|
|
|
Panel_setSelected(panel, i);
|
2006-03-04 18:16:49 +00:00
|
|
|
acc = pid * 10;
|
|
|
|
if (acc > 100000)
|
|
|
|
acc = 0;
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
acc = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ch == KEY_MOUSE) {
|
|
|
|
MEVENT mevent;
|
|
|
|
int ok = getmouse(&mevent);
|
|
|
|
if (ok == OK) {
|
2008-03-14 18:50:49 +00:00
|
|
|
if (mevent.y == panel->y) {
|
2008-05-07 23:02:23 +00:00
|
|
|
int x = panel->scrollH + mevent.x + 1;
|
2008-03-14 18:50:49 +00:00
|
|
|
ProcessField field = ProcessList_keyAt(pl, x);
|
|
|
|
if (field == pl->sortKey) {
|
|
|
|
ProcessList_invertSortOrder(pl);
|
|
|
|
pl->treeView = false;
|
|
|
|
} else {
|
|
|
|
setSortKey(pl, field, panel, settings);
|
|
|
|
}
|
|
|
|
refreshTimeout = 0;
|
|
|
|
continue;
|
|
|
|
} else if (mevent.y >= panel->y + 1 && mevent.y < LINES - 1) {
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_setSelected(panel, mevent.y - panel->y + panel->scrollV - 1);
|
2006-03-04 18:16:49 +00:00
|
|
|
doRefresh = false;
|
|
|
|
refreshTimeout = resetRefreshTimeout;
|
|
|
|
follow = true;
|
|
|
|
continue;
|
|
|
|
} if (mevent.y == LINES - 1) {
|
|
|
|
FunctionBar* bar;
|
|
|
|
if (incSearchMode) bar = searchBar;
|
|
|
|
else bar = defaultBar;
|
|
|
|
ch = FunctionBar_synthesizeEvent(bar, mevent.x);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (ch) {
|
|
|
|
case KEY_RESIZE:
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_resize(panel, COLS, LINES-headerHeight-1);
|
2006-03-04 18:16:49 +00:00
|
|
|
if (incSearchMode)
|
|
|
|
FunctionBar_draw(searchBar, incSearchBuffer);
|
|
|
|
else
|
|
|
|
FunctionBar_draw(defaultBar, NULL);
|
|
|
|
break;
|
|
|
|
case 'M':
|
|
|
|
{
|
|
|
|
refreshTimeout = 0;
|
2008-03-14 18:50:49 +00:00
|
|
|
setSortKey(pl, PERCENT_MEM, panel, settings);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'T':
|
|
|
|
{
|
|
|
|
refreshTimeout = 0;
|
2008-03-14 18:50:49 +00:00
|
|
|
setSortKey(pl, TIME, panel, settings);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'U':
|
|
|
|
{
|
2006-05-30 14:00:18 +00:00
|
|
|
for (int i = 0; i < Panel_getSize(panel); i++) {
|
|
|
|
Process* p = (Process*) Panel_get(panel, i);
|
2006-03-04 18:16:49 +00:00
|
|
|
p->tag = false;
|
|
|
|
}
|
|
|
|
doRefresh = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'P':
|
|
|
|
{
|
|
|
|
refreshTimeout = 0;
|
2008-03-14 18:50:49 +00:00
|
|
|
setSortKey(pl, PERCENT_CPU, panel, settings);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case KEY_F(1):
|
|
|
|
case 'h':
|
|
|
|
{
|
2006-10-04 14:21:27 +00:00
|
|
|
showHelp(pl);
|
2006-03-04 18:16:49 +00:00
|
|
|
FunctionBar_draw(defaultBar, NULL);
|
|
|
|
refreshTimeout = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case '\014': // Ctrl+L
|
|
|
|
{
|
|
|
|
clear();
|
|
|
|
FunctionBar_draw(defaultBar, NULL);
|
|
|
|
refreshTimeout = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ' ':
|
|
|
|
{
|
2006-05-30 14:00:18 +00:00
|
|
|
Process* p = (Process*) Panel_getSelected(panel);
|
2006-03-04 18:16:49 +00:00
|
|
|
Process_toggleTag(p);
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_onKey(panel, KEY_DOWN);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 's':
|
|
|
|
{
|
2006-05-30 14:00:18 +00:00
|
|
|
TraceScreen* ts = TraceScreen_new((Process*) Panel_getSelected(panel));
|
2006-03-04 18:16:49 +00:00
|
|
|
TraceScreen_run(ts);
|
|
|
|
TraceScreen_delete(ts);
|
|
|
|
clear();
|
|
|
|
FunctionBar_draw(defaultBar, NULL);
|
|
|
|
refreshTimeout = 0;
|
|
|
|
CRT_enableDelay();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'S':
|
|
|
|
case 'C':
|
|
|
|
case KEY_F(2):
|
|
|
|
{
|
|
|
|
Setup_run(settings, headerHeight);
|
|
|
|
// TODO: shouldn't need this, colors should be dynamic
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_setRichHeader(panel, ProcessList_printHeader(pl));
|
2006-03-04 18:16:49 +00:00
|
|
|
headerHeight = Header_calculateHeight(header);
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_move(panel, 0, headerHeight);
|
|
|
|
Panel_resize(panel, COLS, LINES-headerHeight-1);
|
2006-03-04 18:16:49 +00:00
|
|
|
FunctionBar_draw(defaultBar, NULL);
|
|
|
|
refreshTimeout = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'F':
|
|
|
|
{
|
|
|
|
follow = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case 'u':
|
|
|
|
{
|
2006-07-11 06:13:32 +00:00
|
|
|
Panel* usersPanel = Panel_new(0, 0, 0, 0, LISTITEM_CLASS, true, ListItem_compare);
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_setHeader(usersPanel, "Show processes of:");
|
|
|
|
UsersTable_foreach(ut, addUserToList, usersPanel);
|
|
|
|
Vector_sort(usersPanel->items);
|
2006-03-04 18:16:49 +00:00
|
|
|
ListItem* allUsers = ListItem_new("All users", -1);
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_insert(usersPanel, 0, (Object*) allUsers);
|
2006-03-04 18:16:49 +00:00
|
|
|
char* fuFunctions[2] = {"Show ", "Cancel "};
|
2006-05-30 14:00:18 +00:00
|
|
|
ListItem* picked = (ListItem*) pickFromList(panel, usersPanel, 20, headerHeight, fuFunctions, defaultBar);
|
2006-03-04 18:16:49 +00:00
|
|
|
if (picked) {
|
|
|
|
if (picked == allUsers) {
|
|
|
|
userOnly = false;
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
setUserOnly(ListItem_getRef(picked), &userOnly, &userId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case KEY_F(9):
|
|
|
|
case 'k':
|
|
|
|
{
|
2006-05-30 14:00:18 +00:00
|
|
|
if (!killPanel) {
|
|
|
|
killPanel = (Panel*) SignalsPanel_new(0, 0, 0, 0);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
2006-05-30 14:00:18 +00:00
|
|
|
SignalsPanel_reset((SignalsPanel*) killPanel);
|
2006-03-04 18:16:49 +00:00
|
|
|
char* fuFunctions[2] = {"Send ", "Cancel "};
|
2006-05-30 14:00:18 +00:00
|
|
|
Signal* signal = (Signal*) pickFromList(panel, killPanel, 15, headerHeight, fuFunctions, defaultBar);
|
2006-03-04 18:16:49 +00:00
|
|
|
if (signal) {
|
|
|
|
if (signal->number != 0) {
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_setHeader(panel, "Sending...");
|
|
|
|
Panel_draw(panel, true);
|
2006-03-04 18:16:49 +00:00
|
|
|
refresh();
|
|
|
|
bool anyTagged = false;
|
2006-05-30 14:00:18 +00:00
|
|
|
for (int i = 0; i < Panel_getSize(panel); i++) {
|
|
|
|
Process* p = (Process*) Panel_get(panel, i);
|
2006-03-04 18:16:49 +00:00
|
|
|
if (p->tag) {
|
|
|
|
Process_sendSignal(p, signal->number);
|
|
|
|
anyTagged = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!anyTagged) {
|
2006-05-30 14:00:18 +00:00
|
|
|
Process* p = (Process*) Panel_getSelected(panel);
|
2006-03-04 18:16:49 +00:00
|
|
|
Process_sendSignal(p, signal->number);
|
|
|
|
}
|
|
|
|
napms(500);
|
|
|
|
}
|
|
|
|
}
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_setRichHeader(panel, ProcessList_printHeader(pl));
|
2006-03-04 18:16:49 +00:00
|
|
|
refreshTimeout = 0;
|
|
|
|
break;
|
|
|
|
}
|
2009-03-11 13:15:43 +00:00
|
|
|
#ifdef HAVE_PLPA
|
2007-11-08 23:23:01 +00:00
|
|
|
case 'a':
|
|
|
|
{
|
|
|
|
if (pl->processorCount == 1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
Process* p = (Process*) Panel_getSelected(panel);
|
|
|
|
unsigned long curr = Process_getAffinity(p);
|
|
|
|
|
|
|
|
Panel* affinityPanel = AffinityPanel_new(pl->processorCount, curr);
|
|
|
|
|
2007-12-17 05:57:28 +00:00
|
|
|
char* fuFunctions[2] = {"Set ", "Cancel "};
|
|
|
|
void* set = pickFromList(panel, affinityPanel, 15, headerHeight, fuFunctions, defaultBar);
|
|
|
|
if (set) {
|
|
|
|
unsigned long new = AffinityPanel_getAffinity(affinityPanel);
|
|
|
|
bool anyTagged = false;
|
|
|
|
bool ok = true;
|
|
|
|
for (int i = 0; i < Panel_getSize(panel); i++) {
|
|
|
|
Process* p = (Process*) Panel_get(panel, i);
|
|
|
|
if (p->tag) {
|
|
|
|
ok = Process_setAffinity(p, new) && ok;
|
|
|
|
anyTagged = true;
|
|
|
|
}
|
2007-11-08 23:23:01 +00:00
|
|
|
}
|
2007-12-17 05:57:28 +00:00
|
|
|
if (!anyTagged) {
|
|
|
|
Process* p = (Process*) Panel_getSelected(panel);
|
|
|
|
ok = Process_setAffinity(p, new) && ok;
|
|
|
|
}
|
|
|
|
if (!ok)
|
|
|
|
beep();
|
2007-11-08 23:23:01 +00:00
|
|
|
}
|
|
|
|
((Object*)affinityPanel)->delete((Object*)affinityPanel);
|
|
|
|
Panel_setRichHeader(panel, ProcessList_printHeader(pl));
|
|
|
|
refreshTimeout = 0;
|
|
|
|
break;
|
|
|
|
}
|
2009-03-11 13:15:43 +00:00
|
|
|
#endif
|
2006-03-04 18:16:49 +00:00
|
|
|
case KEY_F(10):
|
|
|
|
case 'q':
|
|
|
|
quit = 1;
|
|
|
|
break;
|
|
|
|
case '<':
|
|
|
|
case ',':
|
|
|
|
case KEY_F(18):
|
|
|
|
case '>':
|
|
|
|
case '.':
|
|
|
|
case KEY_F(6):
|
|
|
|
{
|
2006-07-11 06:13:32 +00:00
|
|
|
Panel* sortPanel = Panel_new(0, 0, 0, 0, LISTITEM_CLASS, true, ListItem_compare);
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_setHeader(sortPanel, "Sort by");
|
2006-03-04 18:16:49 +00:00
|
|
|
char* fuFunctions[2] = {"Sort ", "Cancel "};
|
|
|
|
ProcessField* fields = pl->fields;
|
|
|
|
for (int i = 0; fields[i]; i++) {
|
2008-03-14 18:50:49 +00:00
|
|
|
char* name = String_trim(Process_fieldTitles[fields[i]]);
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_add(sortPanel, (Object*) ListItem_new(name, fields[i]));
|
2006-03-04 18:16:49 +00:00
|
|
|
if (fields[i] == pl->sortKey)
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_setSelected(sortPanel, i);
|
2006-03-04 18:16:49 +00:00
|
|
|
free(name);
|
|
|
|
}
|
2006-05-30 14:00:18 +00:00
|
|
|
ListItem* field = (ListItem*) pickFromList(panel, sortPanel, 15, headerHeight, fuFunctions, defaultBar);
|
2006-03-04 18:16:49 +00:00
|
|
|
if (field) {
|
|
|
|
settings->changed = true;
|
2008-03-14 18:50:49 +00:00
|
|
|
setSortKey(pl, field->key, panel, settings);
|
|
|
|
} else {
|
|
|
|
Panel_setRichHeader(panel, ProcessList_printHeader(pl));
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
2006-05-30 14:00:18 +00:00
|
|
|
((Object*)sortPanel)->delete((Object*)sortPanel);
|
2006-03-04 18:16:49 +00:00
|
|
|
refreshTimeout = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'I':
|
|
|
|
case KEY_F(4):
|
|
|
|
{
|
|
|
|
refreshTimeout = 0;
|
|
|
|
settings->changed = true;
|
|
|
|
ProcessList_invertSortOrder(pl);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case KEY_F(8):
|
|
|
|
case '[':
|
|
|
|
case '=':
|
|
|
|
case '+':
|
|
|
|
{
|
2006-05-30 14:00:18 +00:00
|
|
|
doRefresh = changePriority(panel, 1);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case KEY_F(7):
|
|
|
|
case ']':
|
|
|
|
case '-':
|
|
|
|
{
|
2006-05-30 14:00:18 +00:00
|
|
|
doRefresh = changePriority(panel, -1);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case KEY_F(3):
|
|
|
|
case '/':
|
2009-04-22 19:26:49 +00:00
|
|
|
incSearchIndex = 0;
|
|
|
|
incSearchBuffer[0] = 0;
|
2006-03-04 18:16:49 +00:00
|
|
|
incSearchMode = true;
|
2009-04-22 19:26:49 +00:00
|
|
|
FunctionBar_draw(searchBar, incSearchBuffer);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
case KEY_F(5):
|
|
|
|
refreshTimeout = 0;
|
|
|
|
pl->treeView = !pl->treeView;
|
|
|
|
settings->changed = true;
|
|
|
|
break;
|
|
|
|
case 'H':
|
2009-02-17 18:13:25 +00:00
|
|
|
doRecalculate = true;
|
2006-03-04 18:16:49 +00:00
|
|
|
refreshTimeout = 0;
|
2008-03-08 23:30:35 +00:00
|
|
|
pl->hideUserlandThreads = !pl->hideUserlandThreads;
|
|
|
|
pl->hideThreads = pl->hideUserlandThreads;
|
2006-03-04 18:16:49 +00:00
|
|
|
settings->changed = true;
|
|
|
|
break;
|
|
|
|
case 'K':
|
2009-02-17 18:13:25 +00:00
|
|
|
doRecalculate = true;
|
2006-03-04 18:16:49 +00:00
|
|
|
refreshTimeout = 0;
|
|
|
|
pl->hideKernelThreads = !pl->hideKernelThreads;
|
|
|
|
settings->changed = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
doRefresh = false;
|
|
|
|
refreshTimeout = resetRefreshTimeout;
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_onKey(panel, ch);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
follow = false;
|
|
|
|
}
|
|
|
|
attron(CRT_colors[RESET_COLOR]);
|
|
|
|
mvhline(LINES-1, 0, ' ', COLS);
|
|
|
|
attroff(CRT_colors[RESET_COLOR]);
|
|
|
|
refresh();
|
|
|
|
|
|
|
|
CRT_done();
|
|
|
|
if (settings->changed)
|
|
|
|
Settings_write(settings);
|
|
|
|
Header_delete(header);
|
|
|
|
ProcessList_delete(pl);
|
|
|
|
FunctionBar_delete((Object*)searchBar);
|
|
|
|
FunctionBar_delete((Object*)defaultBar);
|
2006-05-30 14:00:18 +00:00
|
|
|
((Object*)panel)->delete((Object*)panel);
|
|
|
|
if (killPanel)
|
|
|
|
((Object*)killPanel)->delete((Object*)killPanel);
|
2006-03-04 18:16:49 +00:00
|
|
|
UsersTable_delete(ut);
|
|
|
|
Settings_delete(settings);
|
|
|
|
debug_done();
|
|
|
|
return 0;
|
|
|
|
}
|