aboutsummaryrefslogtreecommitdiffstats
path: root/rt-graph.c
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2012-10-03 18:59:38 -0400
committerJonathan Herman <hermanjl@cs.unc.edu>2012-10-03 18:59:38 -0400
commit8e74ea12a1fcbe0a799284163f0cf72bcb916df7 (patch)
tree4c333218d62fab110dfb146d43c76efe9dbb134c /rt-graph.c
parentfe1bbdcd1f561aba818c55dfede6b932ff8e4001 (diff)
Temporarily disable hash-based plotting until it works with blocking.
Diffstat (limited to 'rt-graph.c')
-rw-r--r--rt-graph.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/rt-graph.c b/rt-graph.c
index 5fa4aa4..e2f8b06 100644
--- a/rt-graph.c
+++ b/rt-graph.c
@@ -484,8 +484,8 @@ int rt_graph_check_task_block(struct graph_info *ginfo,
484 *ts = get_rts(ginfo, record); 484 *ts = get_rts(ginfo, record);
485 485
486 ret = 1; 486 ret = 1;
487 dprintf(3, "Read task_block (%d) record on %d for task %d\n", 487 dprintf(3, "Read task_block (%d) record on %d for task %d at %llu\n",
488 id, *lid, *pid); 488 id, *lid, *pid, *ts);
489 } 489 }
490 out: 490 out:
491 return ret; 491 return ret;
@@ -524,14 +524,13 @@ int rt_graph_check_task_resume(struct graph_info *ginfo,
524 *ts = get_rts(ginfo, record); 524 *ts = get_rts(ginfo, record);
525 525
526 ret = 1; 526 ret = 1;
527 dprintf(3, "Read task_resume (%d) record on %d for task %d\n", 527 dprintf(3, "Read task_resume (%d) record on %d for task %d at %llu\n",
528 id, *lid, *pid); 528 id, *lid, *pid, *ts);
529 } 529 }
530 out: 530 out:
531 return ret; 531 return ret;
532} 532}
533 533
534
535/** 534/**
536 * rt_graph_check_sys_release - check for system release record 535 * rt_graph_check_sys_release - check for system release record
537 * Return 1 and @when if the record matches 536 * Return 1 and @when if the record matches