summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/no_cpu/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-10-02 20:20:17 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-10-02 20:20:17 +0000
commit3d0e458723d51bfd92757685ead0ea2171c2e091 (patch)
treebb7bfe87a19257a0eb9f64176725c3005431a2cc /cpukit/score/cpu/no_cpu/rtems
parent2008-10-02 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-3d0e458723d51bfd92757685ead0ea2171c2e091.tar.bz2
2008-10-02 Joel Sherrill <joel.sherrill@oarcorp.com>
* cpu_asm.c, rtems/score/cpu.h, rtems/score/types.h: Corrections and updates.
Diffstat (limited to 'cpukit/score/cpu/no_cpu/rtems')
-rw-r--r--cpukit/score/cpu/no_cpu/rtems/score/cpu.h2
-rw-r--r--cpukit/score/cpu/no_cpu/rtems/score/types.h6
2 files changed, 1 insertions, 7 deletions
diff --git a/cpukit/score/cpu/no_cpu/rtems/score/cpu.h b/cpukit/score/cpu/no_cpu/rtems/score/cpu.h
index 7ead2fdbeb..81145ab471 100644
--- a/cpukit/score/cpu/no_cpu/rtems/score/cpu.h
+++ b/cpukit/score/cpu/no_cpu/rtems/score/cpu.h
@@ -576,7 +576,7 @@ SCORE_EXTERN void *_CPU_Interrupt_stack_high;
*
* XXX document implementation including references if appropriate
*/
-SCORE_EXTERN void (*_CPU_Thread_dispatch_pointer)();
+SCORE_EXTERN void (*_CPU_Thread_dispatch_pointer)(void);
/*
* Nothing prevents the porter from declaring more CPU specific variables.
diff --git a/cpukit/score/cpu/no_cpu/rtems/score/types.h b/cpukit/score/cpu/no_cpu/rtems/score/types.h
index 49115c440f..ee0810e073 100644
--- a/cpukit/score/cpu/no_cpu/rtems/score/types.h
+++ b/cpukit/score/cpu/no_cpu/rtems/score/types.h
@@ -41,12 +41,6 @@ typedef void no_cpu_isr;
/** This defines the prototype for an ISR entry point. */
typedef no_cpu_isr ( *no_cpu_isr_entry )( void );
-#ifdef RTEMS_DEPRECATED_TYPES
-typedef bool boolean; /* Boolean value */
-typedef float single_precision; /* single precision float */
-typedef double double_precision; /* double precision float */
-#endif
-
#ifdef __cplusplus
}
#endif