versadac  1
versadac - Scalable Recorder Firmware
srmain.h
1 /*******************************************************************************
2 FILE : srmain.h
3 SYSTEM : Gnu C C++ for PPC under vxWorks
4 AUTHOR : Steve Pickford
5 DATE : 28/02/2011
6 DESCRIPTION : This is the main scalable recorder code entry point called by userAppInit()
7 *******************************************************************************/
8 
9 #ifndef __SRMAIN_H
10 #define __SRMAIN_H
11 
12 #include "semLib.h"
13 #include "taskLib.h"
14 #include "priority.h"
15 #include "stack.h"
16 
17 extern void sr_main();
18 
19 /* Execution engine run semaphore */
20 extern SEM_ID g_FBEngineSem;
21 
22 /* NOTE: this MUST be identical to that in Tornado Project for HFFS' non-vol ID. */
23 
24 #endif /* __SRMAIN_H */