summaryrefslogtreecommitdiffstats
path: root/cpukit/score/inline/rtems/score/scheduler.inl
diff options
context:
space:
mode:
authorAndreas Heinig <andreas.heinig@cs.tu-dortmund.de>2013-04-02 12:49:23 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-04-02 13:09:03 +0200
commitf71fc635a20a6a94c08103eed6b9c056f98ddb1c (patch)
treedefce74013debaf88d1544bfb1024e8b63f71f70 /cpukit/score/inline/rtems/score/scheduler.inl
parentbsp/gen5200: Use busy wait (diff)
downloadrtems-f71fc635a20a6a94c08103eed6b9c056f98ddb1c.tar.bz2
Fixed return in void function
Diffstat (limited to '')
-rw-r--r--cpukit/score/inline/rtems/score/scheduler.inl2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/inline/rtems/score/scheduler.inl b/cpukit/score/inline/rtems/score/scheduler.inl
index 20460d1540..e3ced3900f 100644
--- a/cpukit/score/inline/rtems/score/scheduler.inl
+++ b/cpukit/score/inline/rtems/score/scheduler.inl
@@ -118,7 +118,7 @@ RTEMS_INLINE_ROUTINE void _Scheduler_Free(
Thread_Control *the_thread
)
{
- return _Scheduler.Operations.free( the_thread );
+ _Scheduler.Operations.free( the_thread );
}
/**