summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2014-04-04 09:24:44 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2014-04-04 09:24:44 -0500
commitc6f0a4b7cb0cfb5ba80e4ce99d4886f410df6536 (patch)
tree19a06eb9e828d5e78bca59dba0c3466b086d93cb
parentprivateenv.c: Remove unused variable warning (diff)
downloadrtems-c6f0a4b7cb0cfb5ba80e4ce99d4886f410df6536.tar.bz2
schedulerpriorityaffinitysmp.h: Fix compilation error introduced by recent changes
-rw-r--r--cpukit/score/include/rtems/score/schedulerpriorityaffinitysmp.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/cpukit/score/include/rtems/score/schedulerpriorityaffinitysmp.h b/cpukit/score/include/rtems/score/schedulerpriorityaffinitysmp.h
index 8f9d0818b1..9716b128ff 100644
--- a/cpukit/score/include/rtems/score/schedulerpriorityaffinitysmp.h
+++ b/cpukit/score/include/rtems/score/schedulerpriorityaffinitysmp.h
@@ -73,10 +73,14 @@ extern "C" {
*
* This routine allocates @a the_thread->scheduler.
*
+ * @param[in] scheduler points to the scheduler specific information.
* @param[in] the_thread is the thread the scheduler is allocating
- * management memory for
+ * management memory for.
*/
-void * _Scheduler_priority_affinity_SMP_Allocate( Thread_Control *the_thread );
+void * _Scheduler_priority_affinity_SMP_Allocate(
+ Scheduler_Control *scheduler,
+ Thread_Control *the_thread
+);
/**
* @brief Get affinity for the priority affinity smp scheduler.