summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/sparc/tbr/tbr.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-04-12 16:31:59 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-04-12 16:31:59 +0000
commitfc8685dafcb6cded1d97c27a09eea585145f75df (patch)
tree13b4861e4894c70a5ecd0885f5e7dbb0a7650916 /c/src/lib/libcpu/sparc/tbr/tbr.h
parent2002-04-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-fc8685dafcb6cded1d97c27a09eea585145f75df.tar.bz2
2002-03-28 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* tbr/Makefile.am: Remove. * tbr/.cvsignore: Remove. * tbr/tbr.c: Remove. * tbr/tbr.h: Remove. * configure.ac: Remove tbr subdir. * Makefile.am: Remove tbr subdir.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libcpu/sparc/tbr/tbr.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/c/src/lib/libcpu/sparc/tbr/tbr.h b/c/src/lib/libcpu/sparc/tbr/tbr.h
deleted file mode 100644
index 45ffed28bd..0000000000
--- a/c/src/lib/libcpu/sparc/tbr/tbr.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * SPARC Dependent Source
- *
- * COPYRIGHT (c) 1989-1999.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.OARcorp.com/rtems/license.html.
- *
- * $Id$
- */
-
-/*
- * This is the executive's trap table which is installed into the TBR
- * register.
- *
- * NOTE: Unfortunately, this must be aligned on a 4096 byte boundary.
- * The GNU tools as of binutils 2.5.2 and gcc 2.7.0 would not
- * align an entity to anything greater than a 512 byte boundary.
- *
- * Because of this, we pull a little bit of a trick. We allocate
- * enough memory so we can grab an address on a 4096 byte boundary
- * from this area.
- */
-
-#ifndef _libcpu_tbr_h
-#define _libcpu_tbr_h
-
-#include <bsp.h>
-
-#ifndef NO_TABLE_MOVE
-
-#define SPARC_TRAP_TABLE_ALIGNMENT 4096
-
-SCORE_EXTERN unsigned8 _CPU_Trap_Table_area[8192]
- __attribute__ ((aligned (SPARC_TRAP_TABLE_ALIGNMENT)));
-#endif
-
-#endif