summaryrefslogtreecommitdiff
path: root/ace/Task.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1996-12-08 00:08:45 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1996-12-08 00:08:45 +0000
commite5aac168f9bb01257e912050aa5137551ea394e7 (patch)
tree5b32d0edb97c3bebcf6aee4a2d57aa40763f7b29 /ace/Task.cpp
parenta54582c074ef294353ef67380b782e957aad3522 (diff)
downloadATCD-e5aac168f9bb01257e912050aa5137551ea394e7.tar.gz
jammer
Diffstat (limited to 'ace/Task.cpp')
-rw-r--r--ace/Task.cpp7
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);
+}