summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadresume.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-12-22 05:52:32 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-12-22 05:52:32 +0000
commitaae7f1a12b1d5bfe7233ce45532dba3ce651357b (patch)
tree072e6a5712a00830e7d89115cb2ee9b1f9f1895e /cpukit/score/src/threadresume.c
parent2008-12-22 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-aae7f1a12b1d5bfe7233ce45532dba3ce651357b.tar.bz2
Eliminate TRUE/FALSE.
Diffstat (limited to 'cpukit/score/src/threadresume.c')
-rw-r--r--cpukit/score/src/threadresume.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/src/threadresume.c b/cpukit/score/src/threadresume.c
index 5081d5346e..7ca7ee092f 100644
--- a/cpukit/score/src/threadresume.c
+++ b/cpukit/score/src/threadresume.c
@@ -62,7 +62,7 @@ void _Thread_Resume(
_ISR_Disable( level );
- if ( force == TRUE )
+ if ( force == true )
the_thread->suspend_count = 0;
else
the_thread->suspend_count--;
@@ -89,7 +89,7 @@ void _Thread_Resume(
_Thread_Heir = the_thread;
if ( _Thread_Executing->is_preemptible ||
the_thread->current_priority == 0 )
- _Context_Switch_necessary = TRUE;
+ _Context_Switch_necessary = true;
}
}
}