[rtems commit] smp: Delete _ISR_SMP_Initialize()

Sebastian Huber sebh at rtems.org
Tue Jul 30 07:48:50 UTC 2013


Module:    rtems
Branch:    master
Commit:    e4c91765313a6c5d202b907e25e45086cdbb5351
Changeset: http://git.rtems.org/rtems/commit/?id=e4c91765313a6c5d202b907e25e45086cdbb5351

Author:    Sebastian Huber <sebastian.huber at embedded-brains.de>
Date:      Fri Jul 26 16:25:01 2013 +0200

smp: Delete _ISR_SMP_Initialize()

---

 cpukit/score/include/rtems/score/isr.h |    8 --------
 cpukit/score/src/isr.c                 |    4 ----
 cpukit/score/src/isrsmp.c              |    4 ----
 3 files changed, 0 insertions(+), 16 deletions(-)

diff --git a/cpukit/score/include/rtems/score/isr.h b/cpukit/score/include/rtems/score/isr.h
index 0c2abe6..8d57db2 100644
--- a/cpukit/score/include/rtems/score/isr.h
+++ b/cpukit/score/include/rtems/score/isr.h
@@ -98,14 +98,6 @@ void _ISR_Handler_initialization ( void );
 
 #if defined( RTEMS_SMP )
 /**
- *  @brief Initialize SMP interrupt critical section support.
- *
- *  This method initializes the variables required by the SMP implementation
- *  of interrupt critical section management.
- */
-void _ISR_SMP_Initialize(void);
-
-/**
  *  @brief Enter SMP interrupt code.
  *
  *  This method is used to enter the SMP interrupt section.
diff --git a/cpukit/score/src/isr.c b/cpukit/score/src/isr.c
index eaf6ba6..3adea71 100644
--- a/cpukit/score/src/isr.c
+++ b/cpukit/score/src/isr.c
@@ -76,8 +76,4 @@ void _ISR_Handler_initialization( void )
 #if ( CPU_HAS_HARDWARE_INTERRUPT_STACK == TRUE )
   _CPU_Install_interrupt_stack();
 #endif
-
-#if defined(RTEMS_SMP)
-  _ISR_SMP_Initialize();
-#endif
 }
diff --git a/cpukit/score/src/isrsmp.c b/cpukit/score/src/isrsmp.c
index 9244287..6ab815e 100644
--- a/cpukit/score/src/isrsmp.c
+++ b/cpukit/score/src/isrsmp.c
@@ -24,10 +24,6 @@
 #include <rtems/score/threaddispatch.h>
 #include <rtems/score/smp.h>
 
-void _ISR_SMP_Initialize(void)
-{
-}
-
 ISR_Level _ISR_SMP_Disable(void)
 {
   ISR_Level level;




More information about the vc mailing list