blob: dbcfd342ba8af3c44188f8e87aa7ffca573cf893 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef COMMON_H
#define COMMON_H
#include "litmus.h"
void bail_out(const char* msg);
/* EDF-WM helper functions to parse task parameters from file */
int parse_edfwm_ts_file(FILE *ts, struct rt_task *rt);
#endif
|