X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Frts%2FPrinter.c;h=c72b33a5acbffe415c18fe374b014ad6a6759628;hb=7627b3e8be644bc3462179635f44d88d140a0f33;hp=0f65ac9687b09ace5f62e02b00fa30720a13c9ee;hpb=c064c9e3c3dec9e4f4f7f409711264b1b4893465;p=ghc-hetmet.git diff --git a/ghc/rts/Printer.c b/ghc/rts/Printer.c index 0f65ac9..c72b33a 100644 --- a/ghc/rts/Printer.c +++ b/ghc/rts/Printer.c @@ -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;