summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/nios2/include/rtems/score/cpu.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-08 16:03:10 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-12 13:25:43 +0100
commit12dfa5e26fff003cea0115381797e9daa5ceb633 (patch)
tree8afe8ffafc5fb4a37c9e437d70a556fb5a67dedf /cpukit/score/cpu/nios2/include/rtems/score/cpu.h
parentmoxie: Remove use of proc_ptr (diff)
downloadrtems-12dfa5e26fff003cea0115381797e9daa5ceb633.tar.bz2
nios2: Remove use of proc_ptr
Update #3585.
Diffstat (limited to 'cpukit/score/cpu/nios2/include/rtems/score/cpu.h')
-rw-r--r--cpukit/score/cpu/nios2/include/rtems/score/cpu.h18
1 files changed, 4 insertions, 14 deletions
diff --git a/cpukit/score/cpu/nios2/include/rtems/score/cpu.h b/cpukit/score/cpu/nios2/include/rtems/score/cpu.h
index c86b13bb73..4a71987a32 100644
--- a/cpukit/score/cpu/nios2/include/rtems/score/cpu.h
+++ b/cpukit/score/cpu/nios2/include/rtems/score/cpu.h
@@ -296,22 +296,12 @@ void _CPU_Fatal_halt( uint32_t _source, uint32_t _error )
*/
void _CPU_Initialize( void );
-/**
- * @brief CPU ISR install raw handler.
- */
-void _CPU_ISR_install_raw_handler(
- uint32_t vector,
- proc_ptr new_handler,
- proc_ptr *old_handler
-);
+typedef void ( *CPU_ISR_handler )( uint32_t );
-/**
- * @brief CPU ISR install vector.
- */
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 ignored );