No longer untag processes after sending a signal

(useful for when SIGTERM fails and one wants to try again
with SIGKILL).
This commit is contained in:
Hisham Muhammad 2006-07-23 22:57:25 +00:00
parent 2ecf199cf7
commit bf44e233e6
2 changed files with 4 additions and 1 deletions

View File

@ -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

1
htop.c
View File

@ -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;
}
}