summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-03-15 19:27:46 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-03-15 19:27:46 +0000
commit59eb1254adb500437d6f7d88102e49bc36061d04 (patch)
treefb8208899faa4a45e9c0f3cc798f735c1e196784 /cpukit/rtems
parent2011-03-15 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-59eb1254adb500437d6f7d88102e49bc36061d04.tar.bz2
2011-03-15 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/src/taskresume.c, score/Makefile.am, score/include/rtems/score/thread.h: Convert _Thread_Resume and _Thread_Suspend into macros. * score/src/threadresume.c, score/src/threadsuspend.c: Removed.
Diffstat (limited to 'cpukit/rtems')
-rw-r--r--cpukit/rtems/src/taskresume.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/rtems/src/taskresume.c b/cpukit/rtems/src/taskresume.c
index ae5e4202f5..1c6ef490b7 100644
--- a/cpukit/rtems/src/taskresume.c
+++ b/cpukit/rtems/src/taskresume.c
@@ -59,7 +59,7 @@ rtems_status_code rtems_task_resume(
case OBJECTS_LOCAL:
if ( _States_Is_suspended( the_thread->current_state ) ) {
- _Thread_Resume( the_thread, true );
+ _Thread_Resume( the_thread );
_Thread_Enable_dispatch();
return RTEMS_SUCCESSFUL;
}