summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2006-07-23 22:57:25 +0000
committerHisham Muhammad <hisham@gobolinux.org>2006-07-23 22:57:25 +0000
commitbf44e233e62c44f3ec2edd71c37a3102c788d6ee (patch)
tree504980d64e1ab028209b90c091b011fa081bc295
parent2ecf199cf70d24e1ac359640c21cc79a81b68461 (diff)
No longer untag processes after sending a signal
(useful for when SIGTERM fails and one wants to try again with SIGKILL).
-rw-r--r--ChangeLog4
-rw-r--r--htop.c1
2 files changed, 4 insertions, 1 deletions
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;
}
}

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