summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/cre_tsk.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/itron/src/cre_tsk.c')
-rw-r--r--cpukit/itron/src/cre_tsk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/itron/src/cre_tsk.c b/cpukit/itron/src/cre_tsk.c
index 6c2047303a..a0939ee785 100644
--- a/cpukit/itron/src/cre_tsk.c
+++ b/cpukit/itron/src/cre_tsk.c
@@ -35,7 +35,7 @@ ER cre_tsk(
)
{
register Thread_Control *the_thread;
- boolean status;
+ bool status;
Priority_Control core_priority;
Objects_Name name;
@@ -117,7 +117,7 @@ ER cre_tsk(
* NOTE: Since the thread starts with all unblocked, this is necessary.
*/
- the_thread->do_post_task_switch_extension = TRUE;
+ the_thread->do_post_task_switch_extension = true;
the_thread->Start.entry_point = (Thread_Entry) pk_ctsk->task;