summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* ChangeLogTag:Sat Feb 26 21:45:45 2000 Carlos O'Ryan <coryan@uci.edu>ESFcoryan2000-02-2752-1/+7523
|
* This commit was manufactured by cvs2svn to create branch 'ESF'.nobody2000-02-2788-15051/+0
|
* *** empty log message ***schmidt2000-02-273-15/+15
|
* ChangeLogTag:Sat Feb 26 19:52:01 2000 Carlos O'Ryan <coryan@uci.edu>coryan2000-02-274-35/+68
|
* ChangeLogTag:Sat Feb 26 19:47:05 2000 Ossama Othman <ossama@uci.edu>Ossama Othman2000-02-271-2/+1
|
* *** empty log message ***Ossama Othman2000-02-273-0/+24
|
* ChangeLogTag:Sat Feb 26 17:29:50 2000 Darrell Brunsch <brunsch@uci.edu>brunsch2000-02-272-0/+14
|
* Sat Feb 26 13:40:57 2000 Ossama Othman <ossama@uci.edu>Ossama Othman2000-02-261-2/+2
|
* *** empty log message ***Ossama Othman2000-02-263-0/+24
|
* ChangeLogTag:Sat Feb 26 13:20:13 2000 Ossama Othman <ossama@uci.edu>Ossama Othman2000-02-261-0/+6
|
* *** empty log message ***Ossama Othman2000-02-263-0/+21
|
* *** empty log message ***vishal2000-02-262-8/+10
|
* * tao/Any.h:parsons2000-02-261-0/+21
| | | | | | | | | | | | | | | | | | | | * tao/Any.cpp: Added insertion/extraction operator for long double. These work right out of the box on platforms like Solaris and Digitial Unix where the size of the native long double is 16 bytes. For other platforms, we define CORBA::LongDouble to be a struct containing an array 'ld' of 16 chars. In that case, the workaround would look like: CORBA::LongDouble dd; sprintf (dd.ld, "%f", 3.14159); CORBA::Any any; any <<= dd; CORBA::LongDouble dd_out; any >>= dd_out; cout << atof (dd_out.ld) << endl;
* Added insertion/extraction operator for long double.parsons2000-02-262-0/+71
|
* * tests/IDL_Test/reopened_modules.idl:parsons2000-02-261-0/+6
| | | | | * tests/IDL_Test/including.idl: Fix to accomodate platforms without namespaces.
* Fixes to accomondate platforms without namespaces.parsons2000-02-262-19/+1
|
* ChangeLogTag:Fri Feb 25 15:08:18 2000 Carlos O'Ryan <coryan@uci.edu>coryan2000-02-2517-21/+1930
|
* .Steve Huston2000-02-253-0/+3
|
* ChangeLogTag:Fri Feb 25 16:50:37 2000 Steve Huston <shuston@riverace.com>Steve Huston2000-02-251-2/+3
|
* .Steve Huston2000-02-253-3/+24
|
* ChangeLogTag:Fri Feb 25 14:03:57 2000 Carlos O'Ryan <coryan@uci.edu>coryan2000-02-259-53/+82
|
* ChangeLogTag:Fri Feb 25 16:50:37 2000 Steve Huston <shuston@riverace.com>Steve Huston2000-02-251-1/+2
|
* ChangeLogTag:Fri Feb 25 16:50:37 2000 Steve Huston <shuston@riverace.com>Steve Huston2000-02-251-1/+2
|
* ChangeLogTag:Fri Feb 25 16:50:37 2000 Steve Huston <shuston@riverace.com>Steve Huston2000-02-251-1/+1
|
* .Steve Huston2000-02-253-0/+87
|
* *** empty log message ***vishal2000-02-251-3/+3
|
* ChangeLogTag:Fri Feb 25 14:56:41 2000 Steve Huston <shuston@riverace.com>Steve Huston2000-02-251-0/+35
|
* ChangeLogTag:Fri Feb 25 14:48:31 2000 Steve Huston <shuston@riverace.com>Steve Huston2000-02-251-0/+5
|
* ChangeLogTag:Fri Feb 25 14:44:37 2000 Steve Huston <shuston@riverace.com>Steve Huston2000-02-251-1/+1
|
* ChangeLogTag: Fri Feb 25 13:06:14 2000 David L. Levine <levine@cs.wustl.edu>levine2000-02-255-2/+21
|
* ChangeLogTag: Fri Feb 25 13:03:35 2000 Fernando D. Mato Mira ↵levine2000-02-255-33/+63
| | | | <matomira@iname.com>
* ChangeLogTag:Fri Feb 25 10:46:52 2000 Ossama Othman <ossama@uci.edu>Ossama Othman2000-02-251-36/+95
|
* *** empty log message ***Ossama Othman2000-02-251-1/+7
|
* ChangeLogTag:Fri Feb 25 10:43:48 2000 Carlos O'Ryan <coryan@uci.edu>coryan2000-02-2514-188/+290
|
* ChangeLogTag:Fri Feb 25 10:47:33 2000 Douglas C. Schmidt ↵schmidt2000-02-251-1/+1
| | | | <schmidt@tango.cs.wustl.edu>
* ChangeLogTag:Fri Feb 25 10:47:33 2000 Douglas C. Schmidt ↵schmidt2000-02-2510-8/+41
| | | | <schmidt@tango.cs.wustl.edu>
* Fri Feb 25 08:59:59 2000 Ossama Othman <ossama@uci.edu>Ossama Othman2000-02-254-96/+318
|
* *** empty log message ***Ossama Othman2000-02-251-1/+32
|
* * TAO_IDL/include/idl_global.h:parsons2000-02-251-0/+12
| | | | | | | | | | | * TAO_IDL/util/utl_global.h: * TAO_IDL/driver.drv_args.cpp: * TAO_IDL/be/be_codegen.cpp: * TAO_IDL/be/be_visitor_exception/cdr_op_ch.cpp: * TAO_IDL/be/be_visitor_exception/cdr_op_ci.cpp: Added command line option -So to suppress the generation of ostream operators for exceptions. Suggested by Greg Holtmeyer <Greg.Holtmeyer@MW.Boeing.com>.
* Added command line option to suppress generation of ostream operatorsparsons2000-02-256-11/+48
| | | | for exceptions.
* * performance-tests/Latency/dii_client.cpp:parsons2000-02-251-0/+10
| | | | | | | | | Guarded all pertinent code with #if !defined (TAO_HAS_MINIMUM_CORBA). If minimum CORBA is defined, the client code should now just get and narrow a reference to the server. skip instantiating the client, and shutdown the server if that option is selected.
* Guarded all pertinent code with #if !defined (TAO_HAS_MINIMUM_CORBA).parsons2000-02-251-0/+13
|
* * TAO_IDL/be/be_visitor_structure/structure_ch.cpp:parsons2000-02-251-0/+8
| | | | | | | For struct foo, removed typedef of foo_ptr and foo::_ptr_type. These are not part of the spec. Thanks to Chris Cleeland <cleeland@cs.wustl.edu> for pointing this out.
* Removed typedef of foo_ptr - not part of spec.parsons2000-02-251-5/+2
|
* * tests/Param_Test/param_test.idl:parsons2000-02-251-0/+14
| | | | | | | | | | | | | * tests/Param_Test/client.dsp: * tests/Param_Test/run_test.pl: * tests/Param_Test/tests.h: * tests/Param_Test/driver.cpp: * tests/Param_Test/param_test_i.h: * tests/Param_Test/param_test_i.cpp: * tests/Param_Test/multdim_array.h: * tests/Param_Test/multdim_array.cpp: Activated the multidimensional array test, which had been commented out for some time.
* Activated the multidimensional array test.parsons2000-02-259-36/+46
|
* * TAO_IDL/be/be_visitor_argument/upcall_ss.cpp:parsons2000-02-251-1/+1
| | | | | | | | If a multidimensional array 'foo' is an IN parameter to an operation, some compilers have trouble with the implicit cast to const. We now help them out by casting (multidimensional arrays only) the IN argument to const foo_slice * before making the upcall.
* * TAO_IDL/be/be_visitor_argument/upcall_ss.cpp:parsons2000-02-251-0/+9
| | | | | | | | If a multidimensional array 'foo' is an IN parameter to an operation, some compilers have trouble with the implicit cast to const. We now help them out by casting (multidimensional arrays only) the IN argument to const foo_slice *.
* Cast IN args of type foo_array (if the array is multidimensional) toparsons2000-02-251-0/+9
| | | | | const foo_array_slice * for the benefit of some compilers that can't handle implicit cast to const for multidimensional arrays.
* ChangeLogTag:Thu Feb 24 15:44:42 2000 Steve Huston <shuston@riverace.com>schmidt2000-02-242-1/+1
|