summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-28 16:58:10 +0000
committeralex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-28 16:58:10 +0000
commitd3fe3b1c7b47ebe6d7e868c0c82a3e22206f4d5b (patch)
tree19996faf6940606884923ab997660bc0fa0846b6
parentf1e6dfadec3c92dc8dbe1f2e358bbf99072ae74f (diff)
downloadATCD-d3fe3b1c7b47ebe6d7e868c0c82a3e22206f4d5b.tar.gz
What value you return from <handle_input> of the Reactor really
matters. Changed the return value from 1 to 0 and it works. I need to figure out when to return what.
-rw-r--r--TAO/tao/Wait_Strategy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tao/Wait_Strategy.cpp b/TAO/tao/Wait_Strategy.cpp
index 409eefce7b1..b4999be9e93 100644
--- a/TAO/tao/Wait_Strategy.cpp
+++ b/TAO/tao/Wait_Strategy.cpp
@@ -72,7 +72,7 @@ TAO_Wait_On_Reactor::handle_input (void)
"resume_handler failed"),
-1);
- return result;
+ return 0;
}
// Register the handler with the Reactor.