]> rtime.felk.cvut.cz Git - rtems-devel.git/blob - rtems-tests/prioinh_posix/app_def.h
OMK template example applications print APP_VER_ID instead of common SW_VER_ID.
[rtems-devel.git] / rtems-tests / prioinh_posix / app_def.h
1 #ifndef _APP_DEF_H
2 #define _APP_DEF_H
3
4 #ifndef COND_EXTERN
5   #ifdef CONFIGURE_INIT
6     #define COND_EXTERN
7   #else
8     #define COND_EXTERN extern
9   #endif
10 #endif
11
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15
16 #define APP_VER_ID  "prioinh_posix"
17
18 /* Posix style startup task */
19 void *Task_1(void *argument);
20
21 #define SHELL_TASK_PRIORITY 14
22 #define TASK_HI_PRIORITY    13
23 #define TASK_MID_PRIORITY   12
24 #define TASK_1_PRIORITY     11
25 #define TASK_LO_PRIORITY    10
26
27 void bad_status(int status, int fail_level, const char *text);
28
29 #ifdef __cplusplus
30 }
31 #endif
32
33 #endif /*_APP_DEF_H*/