aboutsummaryrefslogtreecommitdiffstats
path: root/bin/stdump.c
diff options
context:
space:
mode:
Diffstat (limited to 'bin/stdump.c')
-rw-r--r--bin/stdump.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/bin/stdump.c b/bin/stdump.c
deleted file mode 100644
index 30715dd..0000000
--- a/bin/stdump.c
+++ /dev/null
@@ -1,22 +0,0 @@
1#include <stdio.h>
2#include <stdlib.h>
3#include <string.h>
4
5
6#include "litmus.h"
7#include "sched_trace.h"
8
9
10
11int main(int argc, char** argv)
12{
13 record_callback_t cb;
14 int ret;
15
16 init_record_callback(&cb);
17
18 ret = walk_sched_trace_files_ordered(argv + 1, argc - 1, 0, &cb);
19 if (ret != 0)
20 perror("walk failed");
21 return 0;
22}