From f4631c4794958909f28833b67427b7e25f8a3dd0 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 11 Sep 2003 16:49:34 +0000 Subject: 2003-09-11 Joel Sherrill PR 488/rtems * src/taskcreate.c, src/tasks.c: Ensure notepads are zeroed. --- cpukit/rtems/ChangeLog | 5 +++++ cpukit/rtems/src/taskcreate.c | 4 ++-- cpukit/rtems/src/tasks.c | 5 +++++ 3 files changed, 12 insertions(+), 2 deletions(-) (limited to 'cpukit/rtems') diff --git a/cpukit/rtems/ChangeLog b/cpukit/rtems/ChangeLog index f0547c3020..be5db3c071 100644 --- a/cpukit/rtems/ChangeLog +++ b/cpukit/rtems/ChangeLog @@ -1,3 +1,8 @@ +2003-09-11 Joel Sherrill + + PR 488/rtems + * src/taskcreate.c, src/tasks.c: Ensure notepads are zeroed. + 2003-09-04 Joel Sherrill * include/rtems.h, include/rtems/rtems/asr.h, diff --git a/cpukit/rtems/src/taskcreate.c b/cpukit/rtems/src/taskcreate.c index d16f447757..0c6d61b063 100644 --- a/cpukit/rtems/src/taskcreate.c +++ b/cpukit/rtems/src/taskcreate.c @@ -45,9 +45,9 @@ * id - pointer to thread id * * Output parameters: - * id - thread id + * id - thread id * RTEMS_SUCCESSFUL - if successful - * error code - if unsuccessful + * error code - if unsuccessful */ rtems_status_code rtems_task_create( diff --git a/cpukit/rtems/src/tasks.c b/cpukit/rtems/src/tasks.c index 0501aff431..e9d7954c50 100644 --- a/cpukit/rtems/src/tasks.c +++ b/cpukit/rtems/src/tasks.c @@ -45,6 +45,7 @@ boolean _RTEMS_tasks_Create_extension( ) { RTEMS_API_Control *api; + int i; api = _Workspace_Allocate( sizeof( RTEMS_API_Control ) ); @@ -56,6 +57,10 @@ boolean _RTEMS_tasks_Create_extension( api->pending_events = EVENT_SETS_NONE_PENDING; _ASR_Initialize( &api->Signal ); created->task_variables = NULL; + + for (i=0; i < RTEMS_NUMBER_NOTEPADS; i++) + api->Notepads[i] = 0; + return TRUE; } -- cgit v1.2.3