From bf44e233e62c44f3ec2edd71c37a3102c788d6ee Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Sun, 23 Jul 2006 22:57:25 +0000 Subject: No longer untag processes after sending a signal (useful for when SIGTERM fails and one wants to try again with SIGKILL). --- ChangeLog | 4 ++++ htop.c | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0e070328..f8f3c12c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -13,6 +13,10 @@ What's new in version 0.6.3 headers are not found. * Horizontally scroll in larger increments when on the Linux console because of slow update of unaccelerated fb +* No longer untag processes after sending a signal + (useful for when SIGTERM fails and one wants to try again + with SIGKILL). All processes can be untagged at once with 'U'. + (thanks to A. Costa for the suggestion) What's new in version 0.6.2 diff --git a/htop.c b/htop.c index 7ffccaa2..8ce6a798 100644 --- a/htop.c +++ b/htop.c @@ -543,7 +543,6 @@ int main(int argc, char** argv) { Process* p = (Process*) Panel_get(panel, i); if (p->tag) { Process_sendSignal(p, signal->number); - Process_toggleTag(p); anyTagged = true; } } -- cgit v1.2.3