summaryrefslogtreecommitdiff
path: root/docs/tutorials/013/task.cpp
diff options
context:
space:
mode:
authorjcej <jcej@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-01-31 16:57:11 +0000
committerjcej <jcej@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-01-31 16:57:11 +0000
commitea604c0714a46eef1f159c31f17c3367147bcf22 (patch)
tree88c57b0e9ef579128c4e88b5bd7550a6f303bc98 /docs/tutorials/013/task.cpp
parent67f212c9a6ca8293fd03ba5f208c52679b7dc542 (diff)
downloadATCD-ea604c0714a46eef1f159c31f17c3367147bcf22.tar.gz
*** empty log message ***
Diffstat (limited to 'docs/tutorials/013/task.cpp')
-rw-r--r--docs/tutorials/013/task.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorials/013/task.cpp b/docs/tutorials/013/task.cpp
index 6d6bf88b8cc..75c0a0d3341 100644
--- a/docs/tutorials/013/task.cpp
+++ b/docs/tutorials/013/task.cpp
@@ -37,11 +37,11 @@ Task::~Task (void)
enabled, they inherit the thread-pool size. Make sure that the subtasks can
be opened before we open our own threadpool.
*/
-int Task::open (int threads)
+int Task::start (int threads)
{
if (next_)
{
- if (next_->open (threads) == -1)
+ if (next_->start (threads) == -1)
{
return -1;
}