summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2016-01-18 17:34:25 -0600
committerJoel Sherrill <joel@rtems.org>2016-01-18 17:34:25 -0600
commit2b9374e147de3a458e0b26855911e63611071f07 (patch)
tree2c0fede8e617f471e5af727eedbb266962caae45
parentsem.h: Delete junk in comment (diff)
downloadrtems-2b9374e147de3a458e0b26855911e63611071f07.tar.bz2
taskcreate.c: Add method name to comment to be clearer
-rw-r--r--cpukit/rtems/src/taskcreate.c13
1 files 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
@@ -102,19 +102,14 @@ rtems_status_code rtems_task_create(
#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 ) {