summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/moxie/include/rtems/score/cpu.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-09 08:04:23 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-12 13:25:43 +0100
commit264e1284658b27f7ca30c767114900d564f1bda1 (patch)
tree12715a7f53c2283286e9ee0e6a58070f05108dbb /cpukit/score/cpu/moxie/include/rtems/score/cpu.h
parentmips: Remove use of proc_ptr (diff)
downloadrtems-264e1284658b27f7ca30c767114900d564f1bda1.tar.bz2
moxie: Remove use of proc_ptr
Update #3585.
Diffstat (limited to '')
-rw-r--r--cpukit/score/cpu/moxie/include/rtems/score/cpu.h33
1 files changed, 5 insertions, 28 deletions
diff --git a/cpukit/score/cpu/moxie/include/rtems/score/cpu.h b/cpukit/score/cpu/moxie/include/rtems/score/cpu.h
index fbf689438e..4e8e8dd804 100644
--- a/cpukit/score/cpu/moxie/include/rtems/score/cpu.h
+++ b/cpukit/score/cpu/moxie/include/rtems/score/cpu.h
@@ -478,7 +478,7 @@ uint32_t _CPU_ISR_Get_level( void );
(void) _is_fp; /* avoid warning for being unused */ \
(void) _isr; /* avoid warning for being unused */ \
_stack = ((uintptr_t)(_stack_base)) + (_size) - 8; \
- *((proc_ptr *)(_stack)) = (_entry_point); \
+ *((void (**)(void))(_stack)) = (_entry_point); \
_stack -= 4; \
(_the_context)->fp = (void *)_stack; \
(_the_context)->sp = (void *)_stack; \
@@ -538,35 +538,12 @@ uint32_t _CPU_ISR_Get_level( void );
*/
void _CPU_Initialize(void);
-/*
- * _CPU_ISR_install_raw_handler
- *
- * This routine installs a "raw" interrupt handler directly into the
- * processor's vector table.
- *
- * MOXIE Specific Information:
- *
- * XXX
- */
-void _CPU_ISR_install_raw_handler(
- uint32_t vector,
- proc_ptr new_handler,
- proc_ptr *old_handler
-);
+typedef void ( *CPU_ISR_handler )( uint32_t );
-/*
- * _CPU_ISR_install_vector
- *
- * This routine installs an interrupt vector.
- *
- * MOXIE Specific Information:
- *
- * XXX
- */
void _CPU_ISR_install_vector(
- uint32_t vector,
- proc_ptr new_handler,
- proc_ptr *old_handler
+ uint32_t vector,
+ CPU_ISR_handler new_handler,
+ CPU_ISR_handler *old_handler
);
void *_CPU_Thread_Idle_body( uintptr_t );