forked from Imagelibrary/rtems
2008-10-02 Joel Sherrill <joel.sherrill@oarcorp.com>
* cpu_asm.c, rtems/score/cpu.h, rtems/score/types.h: Corrections and updates.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2008-10-02 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* cpu_asm.c, rtems/score/cpu.h, rtems/score/types.h: Corrections and
|
||||
updates.
|
||||
|
||||
2008-09-11 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* rtems/score/types.h: Do not define boolean, single_precision,
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
*/
|
||||
|
||||
void _CPU_Context_save_fp(
|
||||
void **fp_context_ptr
|
||||
Context_Control_fp **fp_context_ptr
|
||||
)
|
||||
{
|
||||
}
|
||||
@@ -67,7 +67,7 @@ void _CPU_Context_save_fp(
|
||||
*/
|
||||
|
||||
void _CPU_Context_restore_fp(
|
||||
void **fp_context_ptr
|
||||
Context_Control_fp **fp_context_ptr
|
||||
)
|
||||
{
|
||||
}
|
||||
@@ -116,7 +116,7 @@ void _CPU_Context_restore(
|
||||
* XXX document implementation including references if appropriate
|
||||
*/
|
||||
|
||||
void _ISR_Handler()
|
||||
void _ISR_Handler(void)
|
||||
{
|
||||
/*
|
||||
* This discussion ignores a lot of the ugly details in a real
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user