diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-09-18 23:54:33 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-09-18 23:54:33 +0000 |
commit | 8d35b40451f8fbf2726f86d5718fc841221658bf (patch) | |
tree | 8bdbd3902b8664755d7ba266d0203aac49ae4374 /docs/tutorials | |
parent | 0ce453dfa24b8587e6f9e9ef29518ced929aeded (diff) | |
download | ATCD-8d35b40451f8fbf2726f86d5718fc841221658bf.tar.gz |
ChangeLogTag:Sat Sep 18 17:31:52 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'docs/tutorials')
-rw-r--r-- | docs/tutorials/006/client_handler.cpp | 2 | ||||
-rw-r--r-- | docs/tutorials/006/page05.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorials/006/client_handler.cpp b/docs/tutorials/006/client_handler.cpp index 54588dcdafe..584013e50c8 100644 --- a/docs/tutorials/006/client_handler.cpp +++ b/docs/tutorials/006/client_handler.cpp @@ -103,7 +103,7 @@ Client_Handler::open (void *void_acceptor) use the reactor which means that handle_input() and it's fellows are not invoked. */ if (acceptor->thread_per_connection ()) - return this->activate (); + return this->activate (THR_DETACHED); // ************************************************************************ // From here on, we're doing the traditional reactor thing. If diff --git a/docs/tutorials/006/page05.html b/docs/tutorials/006/page05.html index aa323cdc952..389ae8e716e 100644 --- a/docs/tutorials/006/page05.html +++ b/docs/tutorials/006/page05.html @@ -127,7 +127,7 @@ int use the reactor which means that handle_input() and it's fellows are not invoked. */</font> if (acceptor->thread_per_connection ()) - return this->activate (); + return this->activate (THR_DETACHED); <font color=red>// ************************************************************************</font> <font color=red>// From here on, we're doing the traditional reactor thing. If</font> |