summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'ACE-5_0_6'.ACE-5_0_6nobody1999-10-114474-1206880/+0
|
* 5.0.6levine1999-10-114-4/+8
|
* untabifiedlevine1999-10-111-1/+1
|
* ChangeLogTag:Mon Oct 11 07:34:34 1999 Douglas C. Schmidt ↵schmidt1999-10-114-3/+12
| | | | <schmidt@tango.cs.wustl.edu>
* Logging service stuffbrunsch1999-10-101-0/+7
|
* Sun Oct 10 02:25:36 1999 Darrell Brunsch <brunsch@cs.wustl.edu>brunsch1999-10-102-8/+6
|
* ChangeLogTag: Sun Oct 10 09:17:26 1999 David L. Levine <levine@cs.wustl.edu>levine1999-10-102-530/+542
|
* *** empty log message ***pradeep1999-10-101-0/+5
|
* *** empty log message ***pradeep1999-10-102-7/+14
|
* *** empty log message ***pradeep1999-10-101-0/+1
|
* *** empty log message ***pradeep1999-10-101-0/+14
|
* *** empty log message ***pradeep1999-10-101-1/+13
|
* *** empty log message ***pradeep1999-10-105-5/+60
|
* ChangeLogTag: Sat Oct 09 14:10:00 1999 Michael Kircher ↵mk11999-10-091-1/+4
| | | | <Michael.Kircher@mchp.siemens.de>
* * tao/Reply_Dispatcher.{h,i,cpp}:parsons1999-10-091-0/+7
| | | | | | * tao/Asynch_Invocation.{h,i.cpp}: Added some #if !defined (TAO_HAS_MINIMUM_CORBA) guards that I had overlooked.
* Added some missing TAO_HAS_MINIMUM_CORBA macros.parsons1999-10-096-0/+25
|
* ChangeLogTag: Sat Oct 09 14:10:00 1999 Michael Kircher ↵mk11999-10-092-6/+20
| | | | <Michael.Kircher@mchp.siemens.de>
* *** empty log message ***pradeep1999-10-0915-227/+144
|
* :bala1999-10-095-41/+125
|
* ChangeLogTag: Fri Oct 8 19:55:31 1999 Balachandran Natarajan ↵bala1999-10-091-0/+9
| | | | <bala@cs.wustl.edu>
* *** empty log message ***pradeep1999-10-091-3/+2
|
* * tao/Asynch_Invocation.{h,i,cpp}:parsons1999-10-091-0/+12
| | | | | | | | | | | * tao/Reply_Dispatcher.{h,i,cpp}: * tao/Request.{h,cpp}: * tao/MessagingC.h: * tao/Stub.{h,cpp}: Removed the #if defined (TAO_HAS_AMI_CALLBACK) || defined (TAO_HAS_AMI_POLLER) from around the deferred synchoronous code checked in earlier. It doesn't use AMI callbacks or pollers.
* Moved #if defined (ACE_HAS_AMI_CALLBACK) || defined (ACE_HAS_AMI_POLLER)parsons1999-10-0911-61/+34
| | | | | from around the deferred synchronous stuff I checked in earlier. None of that code uses AMI callbacks or pollers.
* ChangeLogTag:Fri Oct 8 18:16:18 1999 Marina Spivak <marina@cs.wustl.edu>marina1999-10-081-8/+5
|
* *** empty log message ***marina1999-10-081-0/+9
|
* Make sure that the object adapter is deleted last.irfan1999-10-081-4/+5
|
* Minor fixes to remove warnings.irfan1999-10-083-6/+4
|
* Fixed dependencies.irfan1999-10-081-751/+154
|
* Added Implementation Issueskirthika1999-10-081-1/+15
|
* Repositioned commentsirfan1999-10-081-2/+2
|
* ChangeLogTag:Fri Oct 08 12:05:03 1999 Irfan Pyarali <irfan@cs.wustl.edu>irfan1999-10-0860-385/+5968
|
* Added #if defined (TAO_HAS_MESSAGING), etc. around definition ofparsons1999-10-082-1/+9
| | | | send_deferred().
* typo in previous entryparsons1999-10-081-1/+1
|
* *** empty log message ***pradeep1999-10-081-7/+15
|
* * tao/Request.h:parsons1999-10-081-0/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * tao/Request.cpp: Implementation of the DII send_deferred(), get_response(), and poll_response() methods. The Request passed its this pointer to a new method in the stub called do_deferred_call(), described below. get_response() blocks until the reply is received. poll_response() is used to minimize that blocking. New method called handle_response() gets the CDR from the reply dispatcher and does the appropriate thing. If the request's NVList has the lazy_evaluation flag set (a recent addition by Carlos), get_reponse() will decode the stream at the last moment. * tao/Stub.h: * tao/Stub.cpp: New method do_deferred_call() creates a new kind of invocation called TAO_GIOP_DII_Deferred_Invocation, described below, passes along the request pointer, calls invoke() and returns without blocking. * tao/Asynch_Invocation.h: * tao/Asynch_Invocation.i: * tao/Asynch_Invocation.cpp: TAO_GIOP_DII_Deferred_Invocation creates a new kind of reply dispatcher, TAO_DII_Deferred_Reply_Dispatcher, described below, passing along the request pointer. * tao/Reply_Dispatcher.h: * tao/Reply_Dispatcher.i: * tao/Reply_Dispatcher.cpp: TAO_DII_Deferred_Reply_Dispatcher uses the request pointer in place of a reply handler, and the handle_response() method in class CORBA_Request in place of the reply stub. * Object.cpp: In order for get_response() to block, class CORBA_Request needs a pointer to its orb, which it never had before. The request creation methods in class CORBA_Object now grab and orb pointer and pass it to the request's constuctor.
* Change for DII deferred synchronous stuff.parsons1999-10-0811-334/+587
|
* uninlined <total_length> to prevent "used before declared" warnings.irfan1999-10-082-22/+24
|
* ChangeLogTag: Fri Oct 08 10:00:00 1999 Michael Kircher ↵mk11999-10-082-2/+10
| | | | <Michael.Kircher@mchp.siemens.de>
* ChangeLogEntry: Fri Oct 08 10:00:00 1999 Michael Kircher ↵mk11999-10-0823-1442/+409
| | | | <Michael.Kircher@mchp.siemens.de>
* ChangeLogTag:Fri Oct 8 07:47:08 1999 Douglas C. Schmidt ↵schmidt1999-10-082-1/+6
| | | | <schmidt@tango.cs.wustl.edu>
* <temp> should be <temp1>. Thanks David.irfan1999-10-081-1/+1
|
* ChangeLogTag:Thu Oct 07 18:47:03 1999 Irfan Pyarali <irfan@cs.wustl.edu>irfan1999-10-0710-20/+199
|
* *** empty log message ***pradeep1999-10-072-119/+414
|
* ChangeLogTag:Thu Oct 7 13:17:29 1999 Douglas C. Schmidt ↵schmidt1999-10-073-1/+9
| | | | <schmidt@tango.cs.wustl.edu>
* *** empty log message ***pradeep1999-10-071-1/+10
|
* *** empty log message ***pradeep1999-10-071-2/+33769
|
* *** empty log message ***pradeep1999-10-073-10/+29
|
* ChangeLogTag:Thu Oct 7 13:14:43 1999 Carlos O'Ryan <coryan@cs.wustl.edu>coryan1999-10-0719-153/+269
|
* ChangeLogTag:Thu Oct 7 11:46:31 1999 Carlos O'Ryan <coryan@cs.wustl.edu>coryan1999-10-073-5/+31
|
* *** empty log message ***Steve Huston1999-10-071-0/+6
|