2007-09-13 Joel Sherrill <joel.sherrill@OARcorp.com>

PR 1259/rtems
	* rtems/src/taskcreate.c: Initialize is_global in all cases since
	memory is not guaranteed to be zero.
This commit is contained in:
Joel Sherrill
2007-09-13 19:47:51 +00:00
parent 7073b0e9bd
commit cb53c32c40
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
2007-09-13 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1259/rtems
* rtems/src/taskcreate.c: Initialize is_global in all cases since
memory is not guaranteed to be zero.
2007-09-12 Sergei Organov <osv@javad.com>
PR 1258/rtems

View File

@@ -205,10 +205,9 @@ rtems_status_code rtems_task_create(
*id = the_thread->Object.id;
#if defined(RTEMS_MULTIPROCESSING)
the_thread->is_global = is_global;
if ( is_global ) {
the_thread->is_global = TRUE;
_Objects_MP_Open(
&_RTEMS_tasks_Information,
the_global_object,