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 | ed6a442f7c63cf7e14cb4c4a45e8e0ad2df7b382 (patch) | |
tree | 5b32d0edb97c3bebcf6aee4a2d57aa40763f7b29 /ace/Task.cpp | |
parent | c2c02e4be7bd96233d0fa1b54257d78d78d37021 (diff) | |
download | ATCD-ed6a442f7c63cf7e14cb4c4a45e8e0ad2df7b382.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); +} |