summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/smp.c
diff options
context:
space:
mode:
authorAlex Ivanov <alexivanov97@gmail.com>2012-11-29 12:39:19 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2012-11-29 13:28:46 -0600
commite655f7e4fae3e7f5f0b5738457c9d09d3cd6b773 (patch)
treee54efe5495ba3e8f6359945c493718c3c7b47535 /cpukit/score/src/smp.c
parentlibblock: Documentation (diff)
downloadrtems-e655f7e4fae3e7f5f0b5738457c9d09d3cd6b773.tar.bz2
score misc: Score misc: Clean up Doxygen #5
Diffstat (limited to 'cpukit/score/src/smp.c')
-rw-r--r--cpukit/score/src/smp.c27
1 files changed, 7 insertions, 20 deletions
diff --git a/cpukit/score/src/smp.c b/cpukit/score/src/smp.c
index f0b576ee8c..cd4d2350ba 100644
--- a/cpukit/score/src/smp.c
+++ b/cpukit/score/src/smp.c
@@ -1,3 +1,10 @@
+/**
+ * @file
+ *
+ * @brief SMP Support
+ * @ingroup Score
+ */
+
/*
* COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
@@ -42,9 +49,6 @@ void rtems_smp_run_first_task(int cpu)
_CPU_Context_switch_to_first_task_smp( &heir->Registers );
}
-/*
- * Process request to initialize this secondary core.
- */
void rtems_smp_secondary_cpu_initialize(void)
{
int cpu;
@@ -90,10 +94,6 @@ void rtems_smp_secondary_cpu_initialize(void)
}
}
-/*
- * Process an interrupt processor interrupt which indicates a request
- * from another core.
- */
void rtems_smp_process_interrupt(void)
{
int cpu;
@@ -179,9 +179,6 @@ void _SMP_Send_message(
bsp_smp_interrupt_cpu( cpu );
}
-/*
- * Send interrupt processor request to all other nodes
- */
void _SMP_Broadcast_message(
uint32_t message
)
@@ -202,9 +199,6 @@ void _SMP_Broadcast_message(
bsp_smp_broadcast_interrupt();
}
-/*
- * Send interrupt processor requests to perform first context switch
- */
void _SMP_Request_other_cores_to_perform_first_context_switch(void)
{
int cpu;
@@ -215,10 +209,6 @@ void _SMP_Request_other_cores_to_perform_first_context_switch(void)
}
}
-/*
- * Send message to other cores requesting them to perform
- * a thread dispatch operation.
- */
void _SMP_Request_other_cores_to_dispatch(void)
{
int i;
@@ -239,9 +229,6 @@ void _SMP_Request_other_cores_to_dispatch(void)
}
}
-/*
- * Send message to other cores requesting them to shutdown.
- */
void _SMP_Request_other_cores_to_shutdown(void)
{
bool allDown;