SMP: Fix a typo in last commit

This commit is contained in:
Gregory Nutt 2016-02-16 10:40:25 -06:00
parent a442245479
commit 7f18b515f4

View File

@ -65,9 +65,12 @@
* Return Value:
* Index of the CPU with the lowest priority running task
*
* Assumptions:
* Called from within a critical section.
*
****************************************************************************/
static int sched_cpu_select(void)
int sched_cpu_select(void)
{
uint8_t minprio;
int cpu;