summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/taskcreate.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-18 06:05:35 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-18 06:05:35 +0000
commit50f32b11653429546d7b8ff2693b5232b885e201 (patch)
treea8821a7e3025ef47082cc21ccbb56551382cdc3f /cpukit/rtems/src/taskcreate.c
parentRemove stray white spaces. (diff)
downloadrtems-50f32b11653429546d7b8ff2693b5232b885e201.tar.bz2
Remove stray white spaces.
Diffstat (limited to 'cpukit/rtems/src/taskcreate.c')
-rw-r--r--cpukit/rtems/src/taskcreate.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpukit/rtems/src/taskcreate.c b/cpukit/rtems/src/taskcreate.c
index 61d5603560..cac5b2d96a 100644
--- a/cpukit/rtems/src/taskcreate.c
+++ b/cpukit/rtems/src/taskcreate.c
@@ -70,12 +70,12 @@ rtems_status_code rtems_task_create(
Priority_Control core_priority;
RTEMS_API_Control *api;
ASR_Information *asr;
-
+
if ( !rtems_is_name_valid( name ) )
return RTEMS_INVALID_NAME;
- /*
+ /*
* Core Thread Initialize insures we get the minimum amount of
* stack space.
*/
@@ -132,7 +132,7 @@ rtems_status_code rtems_task_create(
/*
* Disable dispatch for protection
- */
+ */
_Thread_Disable_dispatch();
@@ -171,7 +171,7 @@ rtems_status_code rtems_task_create(
status = _Thread_Initialize(
&_RTEMS_tasks_Information,
- the_thread,
+ the_thread,
NULL,
stack_size,
is_fp,
@@ -197,7 +197,7 @@ rtems_status_code rtems_task_create(
api = the_thread->API_Extensions[ THREAD_API_RTEMS ];
asr = &api->Signal;
-
+
asr->is_enabled = _Modes_Is_asr_disabled(initial_modes) ? FALSE : TRUE;
*id = the_thread->Object.id;