From 2b9374e147de3a458e0b26855911e63611071f07 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 18 Jan 2016 17:34:25 -0600 Subject: taskcreate.c: Add method name to comment to be clearer --- cpukit/rtems/src/taskcreate.c | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/cpukit/rtems/src/taskcreate.c b/cpukit/rtems/src/taskcreate.c index f8107beb30..5d9f9dda91 100644 --- a/cpukit/rtems/src/taskcreate.c +++ b/cpukit/rtems/src/taskcreate.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2014. + * COPYRIGHT (c) 1989-2014,2016. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -101,20 +101,15 @@ rtems_status_code rtems_task_create( is_global = false; #endif - /* - * Make sure system is MP if this task is global - */ - /* * Allocate the thread control block and -- if the task is global -- * allocate a global object control block. * * NOTE: This routine does not use the combined allocate and open - * global object routine because this results in a lack of - * control over when memory is allocated and can be freed in - * the event of an error. + * global object routine (_Objects_MP_Allocate_and_open) because + * this results in a lack of control over when memory is allocated + * and can be freed in the event of an error. */ - the_thread = _RTEMS_tasks_Allocate(); if ( !the_thread ) { -- cgit v1.2.3