summaryrefslogtreecommitdiff
path: root/src/rt-app.h
blob: c15d76ea5c1cc301ebcca00531d2d80cfae5daeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef _RT_APP_H_
#define _RT_APP_H_

#include <stdlib.h>
#include <stdio.h>
#include <error.h>
#include <time.h>
#include <sched.h>
#include <pthread.h>
#include <getopt.h>
#include <sys/stat.h>
#include <string.h>
#include <signal.h>
#include "rtapp_types.h"
#include "rtapp_args.h"

#ifdef AQUOSA
#include <aquosa/qres_lib.h>
#endif /* AQUOSA */

#ifdef LOCKMEM
#include <sys/mman.h>
#endif

#define PATH_LENGTH 256

void *thread_body(void *arg);


#endif /* _RT_APP_H_ */