Skip to content
Snippets Groups Projects
Commit 6e5204fe authored by Anna Lyons's avatar Anna Lyons
Browse files

separate benchmark output by tabs instead of spaces such that it is easier to...

separate benchmark output by tabs instead of spaces such that it is easier to paste into spreadsheet programs
parent ef17cd31
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ seL4_BenchmarkDumpFullLog()
uint32_t requested = chunk > MAX_IPC_BUFFER ? MAX_IPC_BUFFER : chunk;
uint32_t recorded = seL4_BenchmarkDumpLog(j, requested);
for (uint32_t i = 0; i < recorded; i++) {
printf("%u ", seL4_GetMR(i));
printf("%u\t", seL4_GetMR(i));
}
printf("\n");
/* we filled the log buffer */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment