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
dc38fc2d
Commit
dc38fc2d
authored
Feb 17, 2009
by
Hisham Muhammad
Browse files
Fix missing tree view when userland threads are hidden
(thanks to Josh Stone)
parent
0baba6d7
Changes
2
Show whitespace changes
Inline
Side-by-side
ChangeLog
View file @
dc38fc2d
What's new in version 0.8.2
* BUGFIX: Fix missing tree view when userland threads are hidden
(thanks to Josh Stone)
* BUGFIX: Fix for VPID on OpenVZ systems
(thanks to Wolfgang Frisch)
...
...
ProcessList.c
View file @
dc38fc2d
...
...
@@ -563,9 +563,7 @@ static bool ProcessList_processEntries(ProcessList* this, char* dirname, Process
process
->
pid
=
pid
;
}
}
if
(
parent
)
{
process
->
tgid
=
parent
->
pid
;
}
process
->
tgid
=
parent
?
parent
->
pid
:
pid
;
if
(
showUserlandThreads
&&
(
!
parent
||
pid
!=
parent
->
pid
))
{
char
subdirname
[
MAX_NAME
+
1
];
...
...
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