Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
jberryman
GHC
Commits
7627b3e8
Commit
7627b3e8
authored
Sep 13, 2004
by
sof
Browse files
[project @ 2004-09-13 17:10:48 by sof]
printClosure(): handle MVARs
parent
c064c9e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
ghc/rts/Printer.c
View file @
7627b3e8
...
...
@@ -351,6 +351,13 @@ printClosure( StgClosure *obj )
}
#endif
case
MVAR
:
{
StgMVar
*
mv
=
(
StgMVar
*
)
obj
;
debugBelch
(
"MVAR(head=%p, link=%p, tail=%p, value=%p)
\n
"
,
mv
->
head
,
mv
->
mut_link
,
mv
->
tail
,
mv
->
value
);
break
;
}
case
MUT_VAR
:
{
StgMutVar
*
mv
=
(
StgMutVar
*
)
obj
;
...
...
Write
Preview
Supports
Markdown
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