RTEMS  5.1
traptable.h
1 /*
2  * traptable.h
3  *
4  * Copyright 2010 Gedare Bloom
5  *
6  * The license and distribution terms for this file may be
7  * found in the file LICENSE in this distribution or at
8  * http://www.rtems.org/license/LICENSE.
9  */
10 
11 /* This file can be included by assembly code */
12 
13 #define ENTRY_SIZE (32)
14 
15 #define TABLE_SIZE (1024*ENTRY_SIZE)
16 
17 #ifndef ASM
18 extern void* real_trap_table;
19 extern void* trap_table[TABLE_SIZE];
20 #endif
21