summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/system.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-04 22:19:19 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-04 22:19:19 +0000
commit6aa25dac92e92c95e3c133e0bc330bd3f4b7e9dd (patch)
tree96ef3d0f465b080c486145f027544cefefe68e89 /cpukit/score/include/rtems/system.h
parent2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-6aa25dac92e92c95e3c133e0bc330bd3f4b7e9dd.tar.bz2
2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com>
* sapi/include/confdefs.h, sapi/include/rtems/config.h, sapi/include/rtems/init.h, sapi/src/exinit.c, score/include/rtems/system.h, score/src/isr.c: Move interrupt_stack_size field from CPU Table to Configuration Table. Eliminate CPU Table from all ports. Delete references to CPU Table in all forms.
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/system.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/cpukit/score/include/rtems/system.h b/cpukit/score/include/rtems/system.h
index aba744380c..a90c0aebda 100644
--- a/cpukit/score/include/rtems/system.h
+++ b/cpukit/score/include/rtems/system.h
@@ -187,34 +187,6 @@ extern const char _RTEMS_version[];
*/
extern const char _Copyright_Notice[];
-/**
- * The following defines the CPU dependent information table.
- */
-SCORE_EXTERN rtems_cpu_table _CPU_Table;
-
-/*
- * Macros to access CPU Table fields required by ALL ports.
- */
-
-/** This macro assists in accessing the CPU Specific Configuration Table. */
-#define rtems_cpu_configuration_get_table() (&_CPU_Table)
-
-/** This macro assists in accessing the pretasking BSP hook. */
-#define rtems_cpu_configuration_get_pretasking_hook() \
- (_CPU_Table.pretasking_hook)
-
-/** This macro assists in accessing the predriver BSP hook. */
-#define rtems_cpu_configuration_get_predriver_hook() \
- (_CPU_Table.predriver_hook)
-
-/** This macro assists in accessing the postdriver BSP hook. */
-#define rtems_cpu_configuration_get_postdriver_hook() \
- (_CPU_Table.postdriver_hook)
-
-/** This macro assists in accessing the interrupt stack size. */
-#define rtems_cpu_configuration_get_interrupt_stack_size() \
- (_CPU_Table.interrupt_stack_size)
-
/** This macro defines the maximum length of a Classic API name. */
#define RTEMS_MAXIMUM_NAME_LENGTH sizeof(rtems_name)