Changeset: f77ca174c301 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=f77ca174c301
Modified Files:
        monetdb5/mal/mal_dataflow.c
Branch: default
Log Message:

Use proper debug output


diffs (21 lines):

diff --git a/monetdb5/mal/mal_dataflow.c b/monetdb5/mal/mal_dataflow.c
--- a/monetdb5/mal/mal_dataflow.c
+++ b/monetdb5/mal/mal_dataflow.c
@@ -600,7 +600,7 @@ DFLOWinitBlk(DataFlow flow, MalBlkPtr mb
        PARDEBUG {
                for (n = 0; n < flow->stop - flow->start; n++) {
                        mnstr_printf(GDKstdout, "#[%d] %d: ", flow->start + n, 
n);
-                       printInstruction(GDKstdout, mb, 0, getInstrPtr(mb, n + 
flow->start), LIST_MAL_MAPI);
+                       printInstruction(GDKstdout, mb, 0, getInstrPtr(mb, n + 
flow->start), LIST_MAL_ALL);
                        mnstr_printf(GDKstdout, "#[%d]Dependents block count %d 
wakeup", flow->start + n, flow->status[n].blocks);
                        for (j = n; flow->edges[j]; j = flow->edges[j]) {
                                mnstr_printf(GDKstdout, "%d ", flow->start + 
flow->nodes[j]);
@@ -750,7 +750,7 @@ runMALdataflow(Client cntxt, MalBlkPtr m
 
 #ifdef DEBUG_FLOW
        fprintf(stderr, "#runMALdataflow for block %d - %d\n", startpc, stoppc);
-       printFunction(GDKstdout, mb, 0, LIST_MAPI);
+       printFunction(GDKstdout, mb, 0, LIST_ALL);
 #endif
 
        /* in debugging mode we should not start multiple threads */
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to