summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create branchinterface_reponobody2000-03-288355-2036146/+28269
| | | 'interface_repo'.
* ChangeLogTag:Mon Mar 27 23:30:26 2000 Nanbor Wang <nanbor@cs.wustl.edu>nanbor2000-03-2884-447/+565
|
* * tao/POAC.cpp:parsons2000-03-281-0/+1
| | | | | | | | | | | | | | * tao/GIOP_Server_Request.cpp: The way we were handling ForwardRequest exceptions wasn't working with the new Any operators. The PortableServer::ForwardRequest >>= operator and TAO_GIOP_ServerRequest::set_exception have been changed to do the right thing. This fixes the failing of examples/POA/Forwarding on all platforms (except where minimum CORBA is defined). Changing the Any operators for IDL-defined exceptions, and modifying the rest of the exception >>= operators in TAO will follow shortly. Thanks to Carlos for suggesting the >>= fix.
* * tao/POAC.cpp:parsons2000-03-281-0/+14
| | | | | | | | | | | | | * tao/GIOP_Server_Request.cpp: The way we were handling ForwardRequest exceptions wasn't working with the new Any operators. The PortableServer::ForwardRequest >>= operator and TAO_GIOP_ServerRequest::set_exception have been changed to do the right thing. This fixes the failing of examples/POA/Forwarding on all platforms (except where minimum CORBA is defined). Changing the Any operators for IDL-defined exceptions, and modifying the rest of the exception >>= operators in TAO will follow shortly.
* PortableServer::ForwardRequest >>= operator andparsons2000-03-282-60/+14
| | | | | TAO_GIOP_Server_Request::set_exception changed to work with compiled marshaling.
* ChangeLogTag:Mon Mar 27 17:27:40 2000 Yamuna Krishnamurthy ↵schmidt2000-03-283-3/+10
| | | | <yamuna@cs.wustl.edu>
* Restoration.parsons2000-03-281-0/+4554
|
* Revised IDL for Interface Repository.parsons2000-03-271-4554/+0
|
* *** empty log message ***yamuna2000-03-273-0/+18
|
* *** empty log message ***yamuna2000-03-273-0/+18
|
* Fixed the unused variable warning and ACE_Select_Reactor_Token undeclared erroryamuna2000-03-271-1/+1
|
* Increased timeout period.irfan2000-03-271-4/+4
|
* ChangeLogTag: Mon Mar 27 16:11:29 2000 Irfan Pyarali <irfan@cs.wustl.edu>irfan2000-03-2748-363/+1543
|
* ChangeLogTag: Mon Mar 27 11:11:01 2000 Balachandran Natarajan ↵bala2000-03-273-0/+18
| | | | <bala@cs.wustl.edu>
* ChangeLogTag: Mon Mar 27 09:05:58 2000 Balachandran Natarajan ↵bala2000-03-273-2/+8
| | | | <bala@cs.wustl.edu>
* ChangeLogTag: Mon Mar 27 08:57:42 2000 Balachandran Natarajan ↵bala2000-03-272-1/+6
| | | | <bala@cs.wustl.edu>
* ChangeLogTag:Sun Mar 26 20:20:00 2000 Kirthika Parameswarankirthika2000-03-271-0/+15
| | | | <kirthika@cs.wustl.edu>
* Added implementation for <_stubobj> method in the Smart Proxy Basekirthika2000-03-272-1/+21
| | | | class
* *** empty log message ***bala2000-03-261-77/+98
|
* * TAO_IDL/fe/idl.ll:parsons2000-03-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * TAO_IDL/fe/lex.yy.cpp: * TAO_IDL/fe/lex.yy.cpp.diff: Support added for escaped identifiers, as specified in CORBA 2.3.1. If an identifier appears in an IDL file with a leading underscore, it will now appear in generated code without the underscore (such identifiers were not accepted by the lexer previously). Now generated code can contain identifiers identical to IDL keywords. Note that if the stripped identifier matches a C++ keyword "_cxx_" will be prepended in generated code as before. Thanks to Alex Bangs <bangs@entelos.com> for uncovering this problem by reporting that the IDL compiler would not accept CosLifeCycle.idl with valuetype support enabled (CosLifeCycle.idl contains an identifier "suppports", a valuetype keyword). This closes out Bugzilla #488. * orbsvcs/orbsvcs/CosLifeCycle.idl: Changed "supports" identifier to "_supports". Generated code is unchanged, and the file can now be compiled with the -Gv option. * docs/releasenotes/index.html: Added item about escaped identifier support in the IDL compiler.
* Alex Bangs <bangs@entelos.com>parsons2000-03-261-0/+1
|
* * TAO_IDL/fe/idl.ll:parsons2000-03-261-0/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * TAO_IDL/fe/lex.yy.cpp: * TAO_IDL/fe/lex.yy.cpp.diff: Support added for escaped identifiers, as specified in CORBA 2.3.1. If an identifier appears in an IDL file with a leading underscore, it will now appear in generated code without the underscore (such identifiers were not accepted by the lexer previously). Now generated code can contain identifiers identical to IDL keywords. Note that if the stripped identifier matches a C++ keyword "_cxx_" will be prepended in generated code as before. Thanks to Alex Bangs <bangs@entelos.com> for uncovering this problem by reporting that the IDL compiler would not accept CosLifeCycle.idl with valuetype support enabled (CosLifeCycle.idl contains an identifier "suppports", a valuetype keyword). * orbsvcs/orbsvcs/CosLifeCycle.idl: Changed "supports" identifier to "_supports". Generated code is unchanged, and the file can now be compiled with the -Gv option. * docs/releasenotes/index.html: Added item about escaped identifier support in the IDL compiler.
* Added item about escaped identifier support in IDL compiler.parsons2000-03-261-0/+8
|
* Missed a spot.parsons2000-03-262-3/+3
|
* Added leading underscore to 'supports' identifier, so the file willparsons2000-03-261-1/+1
| | | | | compile if valuetypes are recognized by the IDL compiler. Generated source code is unchanged.
* Implemented handling of escaped identifiers.parsons2000-03-263-301/+305
|
* * TAO_IDL/util/utl_stack.cpp:parsons2000-03-261-0/+12
| | | | | | | | | | | Removed unused AST_Decl* variable in method push(), and the ScopeAsDecl() call that initializes it. This narrowing operation was causing a crash on cxx/Linux-alpha. This may not solve the underlying problem, if any. If that's the case, the error will turn up elsewhere the next time the IDL compiler is run on the above platform, but in any case, the local variable, the initialization, and the ACE_UNUSED_ARG statement were all superfluous in UTL_ScopeStack::push().
* Removed unused variable AST_Decl from push(), and the ScopeAsDeclparsons2000-03-261-4/+0
| | | | call that initializes it.
* ChangeLogTag:Sat Mar 25 22:10:00 2000 Kirthika Parameswarankirthika2000-03-261-0/+10
| | | | <kirthika@cs.wustl.edu>
* Added a check for the nil status of the Stub ptr.kirthika2000-03-261-1/+2
|
* ChangeLogTag:Sat Mar 25 15:24:06 2000 Carlos O'Ryan <coryan@uci.edu>coryan2000-03-2518-49/+71
|
* Add comments to explain the reference count in theirfan2000-03-251-3/+6
| | | | TAO_SHMIOP_Server_Connection_Handler.
* Add comments to explain the reference count in theirfan2000-03-251-2/+5
| | | | TAO_UIOP_Server_Connection_Handler.
* Add comments to explain the reference count in theirfan2000-03-251-3/+6
| | | | TAO_IIOP_Server_Connection_Handler.
* ChangeLogTag:Fri Mar 24 23:07:51 2000 Darrell Brunsch <brunsch@uci.edu>brunsch2000-03-252-0/+11
|
* ChangeLogTag:Fri Mar 24 22:24:10 2000 Carlos O'Ryan <coryan@uci.edu>coryan2000-03-252-7/+11
|
* ChangeLogTag:Fri Mar 24 22:24:10 2000 Carlos O'Ryan <coryan@uci.edu>coryan2000-03-2513-17/+39
|
* ChangeLogTag:Fri Mar 24 22:18:14 2000 Carlos O'Ryan <coryan@uci.edu>coryan2000-03-252-1/+6
|
* *** empty log message ***pradeep2000-03-251-4/+10
|
* Fri Mar 24 21:32:30 2000 Pradeep Gore <pradeep@flamenco.cs.wustl.edu>pradeep2000-03-251-54/+114
|
* ChangeLogTag:Fri Mar 24 17:15:07 2000 Ossama Othman <ossama@uci.edu>Ossama Othman2000-03-253-0/+12
|
* *** empty log message ***Ossama Othman2000-03-251-0/+9
|
* ChangeLogTag:Fri Mar 24 10:30:44 2000 Douglas C. Schmidt ↵schmidt2000-03-251-1/+1
| | | | <schmidt@tango.cs.wustl.edu>
* Thu Mar 23 15:38:23 2000 Balachandran Natarajan <bala@cs.wustl.edu>bala2000-03-251-2/+3
|
* ChangeLogTag:Fri Mar 24 10:30:44 2000 Douglas C. Schmidt ↵schmidt2000-03-252-1/+7
| | | | <schmidt@tango.cs.wustl.edu>
* ChangeLogTag:Fri Mar 24 15:40:25 2000 Darrell Brunsch <brunsch@uci.edu>brunsch2000-03-246-26/+165
|
* Fix problems with CEC documentationoci2000-03-241-9/+18
|
* ChangeLogTag:Fri Mar 24 10:30:44 2000 Douglas C. Schmidt ↵schmidt2000-03-245-1/+24
| | | | <schmidt@tango.cs.wustl.edu>
* ChangeLogTag: Fri Mar 24 10:45:01 2000 Priyanka Gontla <pgontla@ece.uci.edu>doccvs2000-03-241-0/+54
|
* ChangeLogTag: Fri Mar 24 10:33:08 2000 Priyanka Gontla <pgontla@ece.uci.edu>doccvs2000-03-241-3/+3
|