diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-08-05 15:08:52 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-08-05 15:08:52 +0000 |
commit | e4d17bd3363b6e4e49ae511fd3ad6cbdf6c69e8c (patch) | |
tree | 4103b94f4161e115b44b9eac58cf64b027df262f /TAO/tao/ORB.cpp | |
parent | 935ea6fc0fc1d5f2e78c97dbb4b6943c392bfb60 (diff) | |
download | ATCD-e4d17bd3363b6e4e49ae511fd3ad6cbdf6c69e8c.tar.gz |
ChangeLogTag:Thu Aug 5 09:13:53 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'TAO/tao/ORB.cpp')
-rw-r--r-- | TAO/tao/ORB.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/TAO/tao/ORB.cpp b/TAO/tao/ORB.cpp index 7b91b6e366b..5317a00120a 100644 --- a/TAO/tao/ORB.cpp +++ b/TAO/tao/ORB.cpp @@ -250,7 +250,11 @@ CORBA_ORB::perform_work (const ACE_Time_Value &tv) CORBA::Boolean CORBA_ORB::work_pending (void) { + // For the moment, there's always work to do... + return 1; +#if 0 return this->orb_core_->reactor ()->work_pending (); +#endif } #if !defined (TAO_HAS_MINIMUM_CORBA) |