2011-04-25 Jennifer Averett <Jennifer.Averett@OARcorp.com>

* score/include/rtems/bspsmp.h: Did some prototype cleanup.
This commit is contained in:
Jennifer Averett
2011-04-25 15:06:41 +00:00
parent 9e01d150f5
commit fe40096f2e
2 changed files with 17 additions and 1 deletions
+4
View File
@@ -1,3 +1,7 @@
2011-04-25 Jennifer Averett <Jennifer.Averett@OARcorp.com>
* score/include/rtems/bspsmp.h: Did some prototype cleanup.
2011-04-22 Joel Sherrill <joel.sherrill@oarcorp.com>
PR 1782/cpukit
+13 -1
View File
@@ -125,7 +125,7 @@ int bsp_smp_processor_id(void) RTEMS_COMPILER_PURE_ATTRIBUTE;
* @param [in] cpu is the target CPU for this request.
* @param [in] message is message to send
*/
void bsp_smp_send_message(
void rtems_smp_send_message(
int cpu,
uint32_t message
);
@@ -144,6 +144,18 @@ void bsp_smp_broadcast_message(
uint32_t message
);
/**
* @brief Make Request of Others CPUs
*
* This method is invoked by XXX when it needs to make a request
* of the other CPUs.
*
* @param [in] message is message to send
*/
void rtems_smp_broadcast_message(
uint32_t message
);
/**
* @brief Generate a Interprocessor Broadcast Interrupt
*