diff options
Diffstat (limited to 'rt-graph.c')
-rw-r--r-- | rt-graph.c | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -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 |