aboutsummaryrefslogtreecommitdiffstats
path: root/bin/stdump.c
blob: 30715dd144468a3dd9771d2dd61b9b4bb33b069e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <stdio.h>
#include <stdlib.h>
#include <string.h>


#include "litmus.h"
#include "sched_trace.h"



int main(int argc, char** argv)
{
	record_callback_t cb;
	int ret;
	
	init_record_callback(&cb);
	
	ret = walk_sched_trace_files_ordered(argv + 1, argc - 1, 0, &cb);
	if (ret != 0)
		perror("walk failed");
	return 0;
}