Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
htop
Commits
bf44e233
Commit
bf44e233
authored
Jul 23, 2006
by
Hisham Muhammad
Browse files
No longer untag processes after sending a signal
(useful for when SIGTERM fails and one wants to try again with SIGKILL).
parent
2ecf199c
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
bf44e233
...
...
@@ -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
...
...
htop.c
View file @
bf44e233
...
...
@@ -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
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment