From 5e7d12a81c97eea71878ee5b3e77396759a2a4a5 Mon Sep 17 00:00:00 2001 From: NicJA Date: Wed, 20 May 2015 01:13:37 +0000 Subject: [PATCH] fix comment git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@50724 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- rom/exec/childwait.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rom/exec/childwait.c b/rom/exec/childwait.c index 081fa05751..ed2addd8cb 100644 --- a/rom/exec/childwait.c +++ b/rom/exec/childwait.c @@ -21,7 +21,7 @@ /* FUNCTION Wait for either a specific child task, or any child task to finish. - If you specify tid = 0, then ThisTask call will return when any child + If you specify tid = 0, then the call will return when any child task exits, otherwise it will not return until the requested task finishes. @@ -56,7 +56,7 @@ EXAMPLE BUGS - Be careful with the return result of ThisTask function. + Be careful with the return result of this function. SEE ALSO @@ -82,9 +82,9 @@ et = ThisTask->tc_UnionETask.tc_ETask; /* - Scanning ThisTask list is unsafe, I need to Forbid(). Note that the - Wait() below will break the Forbid() condition. This is how I need - it to be. + Scanning the msgport list is unsafe, we need to Forbid(). + Note that the Wait() below will break the Forbid() condition. + This is how we need it to be. */ Forbid(); -- 2.11.4.GIT