mirror of https://github.com/xzeldon/htop.git
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:
parent
2ecf199cf7
commit
bf44e233e6
|
@ -13,6 +13,10 @@ What's new in version 0.6.3
|
||||||
headers are not found.
|
headers are not found.
|
||||||
* Horizontally scroll in larger increments when on the
|
* Horizontally scroll in larger increments when on the
|
||||||
Linux console because of slow update of unaccelerated fb
|
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
|
What's new in version 0.6.2
|
||||||
|
|
||||||
|
|
1
htop.c
1
htop.c
|
@ -543,7 +543,6 @@ int main(int argc, char** argv) {
|
||||||
Process* p = (Process*) Panel_get(panel, i);
|
Process* p = (Process*) Panel_get(panel, i);
|
||||||
if (p->tag) {
|
if (p->tag) {
|
||||||
Process_sendSignal(p, signal->number);
|
Process_sendSignal(p, signal->number);
|
||||||
Process_toggleTag(p);
|
|
||||||
anyTagged = true;
|
anyTagged = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue