RTEMS  5.0.0
tm27.h
Go to the documentation of this file.
1 
9 /*
10  * tm27.h
11  *
12  * The license and distribution terms for this file may be
13  * found in the file LICENSE in this distribution or at
14  * http://www.rtems.org/license/LICENSE.
15  */
16 
17 #ifndef _RTEMS_TMTEST27
18 #error "This is an RTEMS internal file you must not include directly."
19 #endif
20 
21 #ifndef __tm27_h
22 #define __tm27_h
23 
24 /*
25  * Stuff for Time Test 27
26  * Don't bother with hardware -- just use a software-interrupt
27  */
28 
29 #define MUST_WAIT_FOR_INTERRUPT 0
30 
31 #define Install_tm27_vector( handler ) set_vector( (handler), 34, 1 )
32 
33 #define Cause_tm27_intr() asm volatile ("trap #2");
34 
35 #define Clear_tm27_intr() /* empty */
36 
37 #define Lower_tm27_intr() /* empty */
38 
39 #endif