Your message dated Thu, 29 Jan 2009 21:19:19 +0200
with message-id <[email protected]>
and subject line closing #480236
has caused the Debian Bug report #480236,
regarding htop: Userland thread toggle key 'H' does not work
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
480236: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=480236
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: htop
Version: 0.7-1.1
Severity: normal
Tags: patch
The help text says the 'H' key toggles display of userland
threads, however the key has no apparent effect on the
display.
By examining the source code, it looks like the 'H' key
binding is modifying a different variable than the setup
menu for toggling display of userland threads.
The attached patch matches the variable modified in the 'H'
key to that used by the setup menu.
-- System Information:
Debian Release: lenny/sid
APT prefers testing
APT policy: (900, 'testing'), (300, 'unstable')
Architecture: i386 (x86_64)
Kernel: Linux 2.6.22-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=en_US.iso-8859-1 (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash
Versions of packages htop depends on:
ii libc6 2.7-10 GNU C Library: Shared libraries
ii libncurses5 5.6+20080308-1 Shared libraries for terminal hand
htop recommends no packages.
-- no debconf information
--- htop-0.7/htop.c 2007-11-08 17:31:32.000000000 -0700
+++ htop-0.7-bugfix/htop.c 2008-05-08 17:20:56.378828005 -0600
@@ -697,7 +697,7 @@
break;
case 'H':
refreshTimeout = 0;
- pl->hideThreads = !pl->hideThreads;
+ pl->hideUserlandThreads = !pl->hideUserlandThreads;
settings->changed = true;
break;
case 'K':
--- End Message ---
--- Begin Message ---
Version: 0.8.1-1
Hello David,
Hiding/showing userland threads works for me for htop 0.8.1 in experimental.
Additionally, now htop code contains the main line from your patch. I assume
the bug is
closed.
--
Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com
Ukrainian C++ developer, Debian Maintainer, APT contributor
signature.asc
Description: OpenPGP digital signature
--- End Message ---