summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/context.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/include/rtems/score/context.h')
-rw-r--r--cpukit/score/include/rtems/score/context.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/cpukit/score/include/rtems/score/context.h b/cpukit/score/include/rtems/score/context.h
index ffffe9bb51..c0eb80e2f7 100644
--- a/cpukit/score/include/rtems/score/context.h
+++ b/cpukit/score/include/rtems/score/context.h
@@ -106,23 +106,6 @@ extern "C" {
#define _Context_Restart_self( _the_context ) \
_CPU_Context_Restart_self( _the_context )
-#if defined(RTEMS_SMP)
-/*
- * @brief Switch to first task on secondary core.
- *
- * This routine is only used to switch to the first task on a
- * secondary core in an SMP configuration. Since the switch
- * to the first task is done from an interrupt handler, this
- * may be different from simply restarting the currently running
- * task.
- *
- * @param[in] _the_context is the context of the first thread to
- * run on this core
- */
-#define _Context_Switch_to_first_task_smp( _the_context ) \
- _CPU_Context_switch_to_first_task_smp( _the_context )
-#endif
-
/**
* @brief Return starting address of floating point context.
*