diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1996-12-08 00:08:45 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1996-12-08 00:08:45 +0000 |
commit | e5aac168f9bb01257e912050aa5137551ea394e7 (patch) | |
tree | 5b32d0edb97c3bebcf6aee4a2d57aa40763f7b29 /ace/Task.cpp | |
parent | a54582c074ef294353ef67380b782e957aad3522 (diff) | |
download | ATCD-e5aac168f9bb01257e912050aa5137551ea394e7.tar.gz |
jammer
Diffstat (limited to 'ace/Task.cpp')
-rw-r--r-- | ace/Task.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ace/Task.cpp b/ace/Task.cpp index b61699c8213..8152f66fe9d 100644 --- a/ace/Task.cpp +++ b/ace/Task.cpp @@ -232,4 +232,11 @@ ACE_Task_Base::svc_run (void *args) /* NOTREACHED */ } +// Forward the call to close() so that existing +// applications don't break. +int +ACE_Task_Base::module_closed (void) +{ + return this->close (1); +} |