Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Tobias Decking
GHC
Commits
6f44f99a
Commit
6f44f99a
authored
Oct 03, 2004
by
panne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[project @ 2004-10-03 16:37:42 by panne]
Warning police
parent
b89ad0e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
ghc/rts/Schedule.c
ghc/rts/Schedule.c
+4
-3
No files found.
ghc/rts/Schedule.c
View file @
6f44f99a
...
...
@@ -3421,7 +3421,6 @@ void
printAllThreads
(
void
)
{
StgTSO
*
t
;
void
*
label
;
# if defined(GRAN)
char
time_string
[
TIME_STR_LEN
],
node_str
[
NODE_STR_LEN
];
...
...
@@ -3442,8 +3441,10 @@ printAllThreads(void)
for
(
t
=
all_threads
;
t
!=
END_TSO_QUEUE
;
t
=
t
->
global_link
)
{
debugBelch
(
"
\t
thread %d @ %p "
,
t
->
id
,
(
void
*
)
t
);
#if defined(DEBUG)
label
=
lookupThreadLabel
(
t
->
id
);
if
(
label
)
debugBelch
(
"[
\"
%s
\"
] "
,(
char
*
)
label
);
{
void
*
label
=
lookupThreadLabel
(
t
->
id
);
if
(
label
)
debugBelch
(
"[
\"
%s
\"
] "
,(
char
*
)
label
);
}
#endif
printThreadStatus
(
t
);
debugBelch
(
"
\n
"
);
...
...
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