summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-06-28 20:31:36 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-06-28 20:31:36 +0000
commitc5a4332700031edd066a810acd2de20f239dd18c (patch)
tree1a41665c01c461d00ebc1aa21c934f6aa88f4af1 /cpukit/score/src
parent2011-06-28 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-c5a4332700031edd066a810acd2de20f239dd18c.tar.bz2
2011-06-28 Joel Sherrill <joel.sherrill@oarcorp.com>
* score/Makefile.am, score/include/rtems/score/schedulersimplesmp.h, score/src/schedulersimplesmptick.c: Build schedulersimplesmptick.c and fix typos.
Diffstat (limited to 'cpukit/score/src')
-rw-r--r--cpukit/score/src/schedulersimplesmptick.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/cpukit/score/src/schedulersimplesmptick.c b/cpukit/score/src/schedulersimplesmptick.c
index 5577b5579b..de097cf5f1 100644
--- a/cpukit/score/src/schedulersimplesmptick.c
+++ b/cpukit/score/src/schedulersimplesmptick.c
@@ -15,12 +15,14 @@
#include <rtems/system.h>
#include <rtems/score/schedulersimplesmp.h>
+#include <rtems/score/smp.h>
static void _Scheduler_simple_smp_Tick_helper(
int cpu
)
{
Thread_Control *executing;
+ ISR_Level level;
executing = _Per_CPU_Information[cpu].executing;