1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
|
Thu Jan 13 11:52:55 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
* orbsvcs/tests/Concurrency/CC_command.cpp (execute):
Use "fgetc (stdin)" instead of "getchar ()". ACE doesn't wrap
the latter. Fixes a build error.
Thu Jan 13 01:07:11 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
* tao/PortableServer/POA.h (objectkey_prefix):
* tao/PortableServer/POA.cpp (objectkey_prefix):
Changed this static array is to be an array of constant
CORBA::Octets of instead of an array of non-constant
CORBA::Octets. The former is what was intended. Also provides
compiler with additional optimization opportunities.
Wed Jan 12 23:01:24 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
* tests/Portable_Interceptors/PolicyFactory/IORInterceptor.cpp:
Fixed spelling typo.
* tests/Portable_Interceptors/PolicyFactory/server.cpp:
Cosmetic change.
Wed Jan 12 22:36:58 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
* tao/ObjRefTemplate/ORT_Adapter_Impl.h (tao_ort_template_):
Removed this attribute. A local variable within the activate()
method is all that is needed.
(ORT_Adapter_Impl):
Removed default constructor declaration. The compiler generated
one will now suffice since all remaining class members define
suitable default constructors.
* tao/ObjRefTemplate/ORT_Adapter_Impl.cpp:
Coding convention improvements.
(ORT_Adapter_Impl):
Removed default constructor implementation. See default
constructor declaration removal description above.
(activate):
Fixed invalid widening assignment from
PortableInterceptor::ObjectReferenceTemplate_var to
PortableInterceptor::ObjectReferenceFactory_var.
* tao/PortableServer/ORT_Adapter.h (release):
Added this new pure virtual method. It allows the POA to
explicitly release an ObjectReferenceTemplate instance without
pulling in valuetype related code.
* tao/PortableServer/POA.cpp (destroy_i):
Fixed memory leak related to tricky ObjectReferenceTemplate
memory management.
* tao/PortableServer/POA.h:
Cosmetic improvement.
* tao/RTCORBA/Network_Priority_Mapping_Manager.h:
* tao/RTCORBA/Priority_Mapping_Manager.h:
* tao/RTScheduling/Current.h:
* tao/RTScheduling/RTScheduler_Manager.h:
Changed all TAO-specific "_var" classes to inherit privately,
rather than publicly, from TAO_Base_var. Public inheritance in
this case is not correct since (1) the TAO-specific "_var"
classes are not meant to satisfy an "IS-A" relationship with
TAO_Base_var, and (2) since it allows some invalid widening
assignments to occur.
* tao/Valuetype/Value_VarOut_T.h (TAO_Value_Var_T):
Inherit privately from TAO_Base_var and declare a private copy
constructor and assignment operator that accept a reference to a
constant TAO_Base_var. Prevents invalid widening assignments.
* tao/Valuetype/Value_VarOut_T.cpp (TAO_Value_Var_T):
Explicitly initialize TAO_Base_var base class in base member
initializer list of copy constructor.
* orbsvcs/tests/Concurrency/CC_command.cpp (execute):
Replaced use of insecure gets() function call with one to
getchar(). The latter is all that is needed since only one
character is needed from stdin.
Wed Jan 12 19:53:06 2005 J.T. Conklin <jtc@acorntoolworks.com>
* orbsvcs/orbsvcs/CosEvent/CEC_Event_Loader.cpp:
Changed to not crash if ior file can not be opened.
Added '-p' command line option to write process id to file.
Wed Jan 12 15:57:30 2005 Huang-Ming Huang <hh1@cse.wustl.edu>
* orbsvcs/orbsvcs/FtRtEvent/EventChannel/FTRT_Group_Manager.cpp
Fixed unused variable warning. Thanks to Johnny Willemsen
<jwillemsen@remedy.nl> for pointing out.
Tue Jan 11 23:19:33 2005 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tao/GIOP_Message_Base.cpp:
Fixed a debug output which was appearing without the debug level
being set. Thanks to Lother Werzinger for reporting this.
Tue Jan 11 20:44:30 2005 Huang-Ming Huang <hh1@cse.wustl.edu>
* orbsvcs/orbsvcs/FtRtEvent/EventChannel/FTRT_Group_Manager.cpp
* orbsvcs/orbsvcs/FtRtEvent/EventChannel/IOGRMaker.h
* orbsvcs/orbsvcs/FtRtEvent/EventChannel/IOGRMaker.cpp
Fixed problem with the scenario when the secondary event
channel crashes and a new backup joins in the object group.
Thanks to Thia Chang Chao <tchangch@dso.org.sg> for reporting
the problem.
* orbsvcs/FTRT_Event_Service/Event_Service/FT_EventService.cpp
* orbsvcs/FTRT_Event_Service/ftec
* orbsvcs/FTRT_Event_Service/supplier
Added debug options.
Tue Jan 11 14:49:40 2005 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/driver/drv_preproc.cpp:
Added close of temporary file created only inside
#ifndef ACE_LACKS_MKSTEMP guard. Thanks to
M. C. Gahan <mcgahan@sparta.com> for reporting the
problem of the dangling descriptor. This fix closes
[BUGID:2026].
Tue Jan 11 12:17:26 2005 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/CosNaming.mpc:
List the naming_serv_export.h instead of Naming_Server.h.
Naming_Server.h gets added automatically.
* orbsvcs/orbsvcs/FaultTolerance.mpc:
Removed a redundant listing of FT_CORBAC.cpp.
* orbsvcs/orbsvcs/RTEvent.mpc:
Moved two files listed in Source_Files into Template_Files as they
are template cpp files.
* orbsvcs/orbsvcs/RTOLDEvent.mpc:
Removed the listing of RTOldEvent.rc. MPC will now detect that it
belongs to the RTOLDEvent project due to case insensitivity for
resource files.
Mon Jan 10 18:26:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/ORB_Core.cpp:
When the IORInterceptor Adapter is requested but can't be
retrieved we throw an internal error. Added an ACE_ERROR in
front of it so that it is much easier to detect what went
wrong and caused the internal error
Mon Jan 10 10:42:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Profile.h:
Doxygen improvements
Sun Jan 9 19:52:09 2005 J.T. Conklin <jtc@acorntoolworks.com>
* orbsvcs/orbsvcs/Naming/README:
Updated to note that Naming_Utils.{cpp,h} was split into
Naming_Client.{cpp,h} and Naming_Server.{cpp,h}.
Sun Jan 9 19:36:24 2005 J.T. Conklin <jtc@acorntoolworks.com>
* orbsvcs/orbsvcs/Makefile.am:
Generate pkg-config *.pc files from templates.
* orbsvcs/orbsvcs/TAO_CosConcurrency.pc.in:
* orbsvcs/orbsvcs/TAO_CosLifeCycle.pc.in:
* orbsvcs/orbsvcs/TAO_CosLoadBalancing.pc.in:
* orbsvcs/orbsvcs/TAO_CosProperty.pc.in:
* orbsvcs/orbsvcs/TAO_CosTime.pc.in:
New files, pkg-config *.pc templates.
Sun Jan 9 12:00:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/PortableServer/Object_Adapter.h:
* tao/PortableServer/Servant_Location:
Moved the enum TAO_SERVANT_LOCATION to its own file.
* tao/Makefile.am:
Updated for change above
Sun Jan 9 11:06:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/PortableServer/Object_Adapter.{h,cpp}:
* tao/PortableServer/Object_Adapter_Factory.{h,cpp}:
Moved TAO_Object_Adapter_Factory to its own file
* tao/PortableServer/PortableServer.cpp:
Added include of Object_Adapter_Factory.h
* tao/RTPortableServer/RT_Object_Adapter_Factory.h:
Include Object_Adapter_Factory.h instead of Object_Adapter.h
* tao/Makefile.am:
Updated for change above
Sun Jan 9 10:38:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/PortableServer/Default_Acceptor_Filter.cpp:
Fixed incorrect ACE_RCSID
* tao/PortableServer/Default_Acceptor_Filter.h:
Removed not needed push/pop for msvc
Sun Jan 9 10:30:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/PortableServer/Servant_Base.{h,cpp,i}:
* tao/PortableServer/Local_Servant_Base.{h,cpp,inl}:
Moved TAO_Local_ServantBase to its own file. Also changed
TAO_RefCountServantBase::_ref_count to
TAO_RefCountServantBase::_refcount_value, the first was TAO
specific, the second is defined by the corba spec. This fixes
bugzilla [1951]. Thanks to Frank Pilhofer <fp at mc dot com>
for reporting this
* tao/Makefile.am:
Updated for change above
Sat Jan 8 14:49:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* performance-tests/Sequence_Latency/Thread_Per_Connection/Thread_Per_Conn.mpc:
* performance-tests/Sequence_Latency/Single_Threaded/Single_Threaded.mpc:
* performance-tests/Sequence_Latency/DSI/DSI.mpc:
* performance-tests/Sequence_Latency/DII/DII.mpc:
* performance-tests/Sequence_Latency/Deferred/Deferred.mpc:
* performance-tests/Sequence_Latency/AMI/ami.mpc:
* performance-tests/Sequence_Latency/AMH_Single_Threaded/Single_Threaded.mpc:
* performance-tests/Sequence_Latency/Thread_Pool/Thread_Pool.mpc:
* tests/Bug_1330_Regression/Bug_1330_Regression.mpc:
Use taoserver instead of server as base project and use taoclient
for the client
Fri Jan 7 22:46:31 2005 J.T. Conklin <jtc@acorntoolworks.com>
* orbsvcs/orbsvcs/Makefile.am:
Generate pkg-config *.pc files from templates.
* orbsvcs/orbsvcs/TAO_CosEvent.pc.in:
* orbsvcs/orbsvcs/TAO_CosEvent_Serv.pc.in:
* orbsvcs/orbsvcs/TAO_CosEvent_Skel.pc.in:
* orbsvcs/orbsvcs/TAO_CosNaming.pc.in:
* orbsvcs/orbsvcs/TAO_CosNaming_Serv.pc.in:
* orbsvcs/orbsvcs/TAO_CosNaming_Skel.pc.in:
* orbsvcs/orbsvcs/TAO_CosNotification.pc.in:
* orbsvcs/orbsvcs/TAO_CosNotification_Serv.pc.in:
* orbsvcs/orbsvcs/TAO_CosNotification_Skel.pc.in:
* orbsvcs/orbsvcs/TAO_CosTrading.pc.in:
* orbsvcs/orbsvcs/TAO_CosTrading_Serv.pc.in:
* orbsvcs/orbsvcs/TAO_CosTrading_Skel.pc.in:
* orbsvcs/orbsvcs/TAO_DsEventLogAdmin.pc.in:
* orbsvcs/orbsvcs/TAO_DsEventLogAdmin_Serv.pc.in:
* orbsvcs/orbsvcs/TAO_DsEventLogAdmin_Skel.pc.in:
* orbsvcs/orbsvcs/TAO_DsLogAdmin.pc.in:
* orbsvcs/orbsvcs/TAO_DsLogAdmin_Serv.pc.in:
* orbsvcs/orbsvcs/TAO_DsLogAdmin_Skel.pc.in:
* orbsvcs/orbsvcs/TAO_DsNotifyLogAdmin.pc.in:
* orbsvcs/orbsvcs/TAO_DsNotifyLogAdmin_Serv.pc.in:
* orbsvcs/orbsvcs/TAO_DsNotifyLogAdmin_Skel.pc.in:
* orbsvcs/orbsvcs/TAO_ETCL.pc.in:
* orbsvcs/orbsvcs/TAO_Svc_Utils.pc.in:
New files, pkg-config *.pc templates.
Fri Jan 7 19:24:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Two_Objects/Two_Objects.mpc:
* tests/Timeout/Timeout.mpc:
* tests/Single_Read/Single_Read.mpc:
* tests/Server_Connection_Purging/Server_Connection_Purging.mpc:
* tests/Server_Leaks/Server_Leaks.mpc:
* tests/ORB_shutdown/Foo_Bar.mpc:
* tests/Oneways_Invoking_Twoways/Oneways_Invoking_Twoways.mpc:
* tests/OctetSeq/OctetSeq.mpc:
* tests/Objref_Sequence_Test/Objref_Sequence_Test.mpc:
* tests/No_Server_MT_Connect_Test/No_Server_Connect_Test.mpc:
* tests/Native_Exceptions/Native_Exceptions.mpc:
* tests/Muxed_GIOP_Versions/Muxed_GIOP_Versions.mpc:
* tests/Multiple_Inheritance/Multiple_Inheritance.mpc:
* tests/Multiple/Multiple.mpc:
* tests/MT_Timeout/MT_Timeout.mpc:
* tests/Forwarding/Forwarding.mpc:
* tests/Explicit_Event_Loop/Explicit_Event_Loop.mpc:
* tests/Crash_On_Write/Crash_On_Write.mpc:
* tests/Connection_Purging/Connection_Purging.mpc:
* tests/Connection_Failure/Connection_Failure.mpc:
* tests/Connect_Strategy_Test/Connect_Strategy_Test.mpc:
* tests/Cache_Growth_Test/Cache_Growth_Test.mpc:
* tests/Bug_1627_Regression/test.mpc:
* tests/Abstract_Interface/Abstract_Interface.mpc:
Changed above mpc files by using the correct base project, derive
the server from taoserver, the client from taoclient. Some clients
did link S.cpp files which where not needed. Seems more mpc files
could be cleaned and simplified.
Fri Jan 7 18:58:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Client_Leaks/Client_Leaks.mpc:
Simplified this mpc file by using taoserver and taoclient base
projects
Fri Jan 7 18:56:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Big_Request_Muxing/Big_Request_Muxing.mpc:
Simplified this mpc file by using taoserver and taoclient base
projects
Fri Jan 7 18:42:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Hello/Hello.mpc:
Use taoserver and taoclient as base projects to simplify this file
* tests/Muxing/Muxing.mpc:
* tests/Big_Reply/Big_Reply.mpc:
Use taoserver and taoclient as base projects to simplify this file.
Added TestC.cpp explicitly to the client, so that we don't get
TestS.cpp and then we also don't need portableserver for the client
Fri Jan 7 17:49:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/Event/Event_Channel.h:
Include ace/Unbounded_Set.h, not Unbound_Set_Ex.h because that
one has been removed
Fri Jan 7 14:42:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/orb.idl:
* tao/orb_types.pidl:
* tao/orb_typesA.cpp:
* tao/orb_typesC.h:
Checked the CORBA spec, that ObjectId and ObjectIdList are not in the
CORBA module but are in CORBA::ORB. Both where defined in orb.idl
but shouldn't be there. So, removed ObjectId from orb_types and
ObjectIdList from orb_types. This way there is also no conflict
with the PortableServer::ObjectId
Fri Jan 7 12:23:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/CosEvent/CEC_Default_Factory.cpp:
* orbsvcs/orbsvcs/Event/EC_Default_Factory.cpp:
* orbsvcs/orbsvcs/Event/Event_Channel.{h,cpp}:
* orbsvcs/orbsvcs/Notify/Default_Factory.cpp:
Replaced ACE_Unbounded_Set_Ex with ACE_Unbounded_Set, the Ex version
gives the wrong feeling about safety when using it. This belongs to
the change below:
Thu Jan 6 08:24:39 2005 Carlos O'Ryan <coryan@atdesk.com>
After a last check for ACE_Unbounded_Set_Ex this template will be
removed from ACE
* orbsvcs/orbsvcs/ESF/ESF_Proxy_List.h:
Replaced ACE_Unbounded_Set_Ex with ACE_Unbounded_Set in comments
Fri Jan 7 08:34:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/ORB.h:
* tao/orb_typesC.h:
* tao/orb_typesA.cpp:
Temporarily commented out the ObjectId typedefs in the orb_typesC.h,
when someone uses using namespace CORBA and PortableServer we get
ambiguity because ObjectId is in the CORBA and PortableServer
namespace. Removed the typecode for ObjectId from ORB.h, it is not
in orb_types. When the POA refactoring is merged next month, the
ObjectId in the PortableServer namespace will move to the GOA
namespace (see MIOP specification) and we can enable the typedefs
again
Thu Jan 6 12:39:43 2005 J.T. Conklin <jtc@acorntoolworks.com>
* tao/Makefile.am:
Add Adapter_{Factory,Registry}.cpp to ORB_Core defn.
Thu Jan 6 18:27:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/tao.mpc:
Fixed casing in orb_types filenames.
Thu Jan 6 15:25:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/orb.idl:
* tao/Typecode_types.pidl:
* tao/orb_types.pidl:
Moved typecode stuff to Typecode_types.pidl and simple typedefs to
orb_types.pidl and include both new files again in orb.idl. Other
idl/pidl files which just need the typedefs or typecode stuff just
can then include the specific pidl file instead of orb.idl which
pulls in a lot more then really needed
* tao/ORB.h:
Removed typedefs that now are in orb_types.pidl, added a needed
forward declaration and removed some commented out code
* tao/orb_typesA.cpp:
* tao/orb_typesC.{h,cpp,inl}:
* tao/orb_typesS.h:
* tao/Typecode_typesC.{h,cpp,inl}:
* tao/Typecode_typesS.h:
Added new generated files
* tao/tao.mpc:
Added new fils
* tao/Makefile.am:
Added new files
* tao/Typecode.{h,cpp}:
Removed things that are now in Typecode.pidl and included
the TypecodeC.h file instead.
* tao/diffs/Typecode_types.diff:
New diff file
* tao/Typecode_Constants.cpp:
Removed typecode for ORBid, it is now in orb_types
Thu Jan 6 08:24:39 2005 Carlos O'Ryan <coryan@atdesk.com>
* orbsvcs/orbsvcs/ESF/ESF_Proxy_List.h:
* orbsvcs/orbsvcs/ESF/ESF_Proxy_List.i:
Use ACE_Unbounded_Set instead of ACE_Unbounded_Set_Ex. The
latter is not thread-safe, and the bugs attributed to the former
(see http://deuce.doc.wustl.edu/bugzilla/show_bug.cgi?id=1465)
are actually a user-configuration mistake.
Thu Jan 6 12:02:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/RTCORBA/Network_Priority_Mapping_Manager.h:
* tao/RTCORBA/Priority_Mapping_Manager.h:
Removed not needed pragma push/pop for msvc
Thu Jan 6 11:35:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Adapter.{h,cpp}:
* tao/Adapter_Factory.{h,cpp}:
* tao/Adapter_Registry.{h,cpp}:
Moved TAO_Adapter_Registry and TAO_Adapter_Factory to its own file
* tao/ORB_Core.{h,cpp}:
* tao/Internal.cpp:
* tao/IORTable/Table_Adapter.h:
* tao/PortableServer/Object_Adapter.h:
Updated includes because of change above
* tao/Makefile.am:
* tao/tao.mpc:
Added new files above
Thu Jan 6 09:53:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Checkin of separate footprint issue. This has no influence at the
other code, so committed this. When the POA refactoring is merged
the ImplRepo code will move to another new library
* tao/PortableServer/ImplRepo.pidl:
* tao/PortableServer/ServerObject.pidl:
* tao/PortableServer/ImplRepoA.cpp:
* tao/PortableServer/ImplRepoC.{h,cpp,i,inl}:
* tao/PortableServer/ImplRepoS.{h,cpp,i,inl}:
Moved the ServerObject interface to its own idl file so
that when someone just uses the ServerObject stub and
the ImplRepo proxy, he doesn't link in the ImplRepo stub
which is big.
* tao/PortableServer/ServerObjectA.cpp:
* tao/PortableServer/ServerObjectC.{h,cpp,inl}:
* tao/PortableServer/ServerObjectS.{h,cpp,inl}:
New generated files
* tao/PortableSever/ImplRepo_i.h:
Replaced include of ImplRepoS.h with ServerObjectS.h
* tao/PortableServer/POA.cpp:
Added include of ImplRepoC.h
* tao/Makefile.am:
Added new files above
Thu Jan 6 09:18:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/PortableServer/PortableServer_include.pidl:
* tao/PortableServer/PortableServer_includeS.h:
* tao/PortableServer/PortableServer_includeC.h:
Added new files. These will be used soon, we will prevent
the including of PortableServerC.h soon, users should include
PortableServer.h to make sure the PortableServer library is
loaded. Some users include PortableServer.pidl, they should
include this new PortableServer_include.pidl instead else they
get compile errors in the future
* tao/Makefile.am:
Added new files above
Wed Jan 5 22:06:14 2005 Phil Mesnier <mesnier_p@ociweb.com>
* tao/UTF16_BOM_Translator.cpp (write_wstring):
When writing a nul wstring in a GIOP 1.2 message, the translator
had been writing out a BOM. While this behavior was consistent
with the CORBA specification, and handled just fine by some
ORBs, others, specifically JDK's ORB, did not tolerate this. The
solution is to simply not write out a BOM when writing a zero
length wstring.
* interop-tests/wchar/client.cpp:
* interop-tests/wchar/Client.java:
* interop-tests/wchar/wchar_reference.cpp:
* interop-tests/wchar/WCharReference.java:
* interop-tests/wchar/README:
Added a new test case specifically for sending a nul wstring.
Thanks to Deiter Schneiders <dschneiders@lhs-systems.com> for
pointing this out.
Wed Jan 5 19:48:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/HTIOP/HTIOP_Acceptor_Impl.{h,cpp,i}:
* orbsvcs/orbsvcs/HTIOP/HTIOP_Completion_Handler.{h,cpp,i}:
* orbsvcs/orbsvcs/HTIOP/HTIOP_Connection_Handler.{h,cpp,i}:
* orbsvcs/orbsvcs/HTIOP/HTIOP_Connector_Impl.{h,cpp,i}:
* orbsvcs/orbsvcs/HTIOP/HTIOP_Profile.{h,cpp,i}:
* orbsvcs/orbsvcs/HTIOP/HTIOP_Transport.{h,cpp,i}:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Connection_Handler.{h,cpp,i}:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Profile.{h,cpp,i}:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.{h,cpp,i}:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Profile.{h,cpp,i}:
Removed i/inl file, update h/cpp
* orbsvcs/orbsvcs/Makefile.am
Updated for change above
Wed Jan 5 19:33:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/FaultTolerance/FT_Service_Callbacks.{h,cpp,i,inl}:
Removed i/inl file, update h/cpp
* orbsvcs/orbsvcs/Makefile.am
Updated for change above
Wed Jan 5 19:30:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/ESF/ESF_Copy_On_Read.{h,cpp,i}:
* orbsvcs/orbsvcs/ESF/ESF_Peer_Admin.{h,cpp,i}:
* orbsvcs/orbsvcs/ESF/ESF_Proxy_Collection.{h,cpp,i}:
* orbsvcs/orbsvcs/ESF/ESF_Worker.{h,cpp,i}:
Removed i file, update h/cpp
Wed Jan 5 19:25:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/PortableServer/Key_Adapters.{h,cpp,i}:
* tao/PortableServer/POA_Policies.{h,cpp,i}:
Removed i file, update h/cpp
* tao/Makefile.am:
Updated for change above
Wed Jan 5 19:21:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/Runtime_Scheduler.{h,cpp,i}:
Removed i file, update h/cpp
* orbsvcs/orbsvcs/Makefile.am
Updated for change above
Wed Jan 5 19:17:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/Log/RTEventLogFactory_i.cpp:
Removed include of EC_ConsumerAdmin.i, this file is zapped and
it was completely wrong to include that file here.
Wed Jan 5 09:33:54 2005 Jeff Parsons <j.parsons@vanderbilt.edu>
* tao/extra_core.mpb:
* tao/tao.mpc:
Removed the extra nested braces related to TAO_COMPONENTS
that create "subdirectories" in VC project files. In makefiles,
these "components" might be separately compiled but they won't
link, so the feature is not used on any platform. In VC projects,
the extra level of folders makes source and header files
much harder to locate in the GUI environment.
Wed Jan 5 14:22:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/AMI/FL_Callback/Progress_i.{h,cpp,i}:
* examples/AMI/FL_Callback/Peer_i.{h,cpp,i}:
* tests/FL_Cube/test_i/{h,cpp,i}:
* tests/Object_Loader/Loader.{h,cpp,i}:
* tests/Object_Loader/Test_i.{h,cpp,i}:
* tests/QtTests/test_i.{h,cpp,i}:
* tests/RTCORBA/Diffserv/Custom_Network_Priority_Mapping.i:
* tests/Timeout/test_i.{h,cpp,i}:
* tests/Xt_Stopwatch/test_i.{h,cpp,i}:
* orbsvcs/tests/EC_Throughput/ECT_Driver.{h,cpp,i}:
* orbsvcs/tests/Notify/lib/Supplier_T.{h,cpp,i}:
* orbsvcs/tests/Notify/lib/Peer_T.{h,cpp,i}:
* orbsvcs/tests/Notify/lib/Consumer_T.{h,cpp,i}:
Removed i file and updated h/cpp file.
* orbsvcs/tests/EC_Throughput/Makefile.am:
Updated for changes above
Wed Jan 5 13:47:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Valuetype/ValueFactory.{h,cpp,inl}:
* tao/Valuetype/ValueFactory_Map.{h,cpp,inl}:
* tao/Valuetype/Value_VarOut_T.{h,cpp,inl}:
Removed inl file and updated h/cpp file.
* orbsvcs/orbsvcs/Makefile.am
Updated for changes above
Wed Jan 5 13:40:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/default_client.{h,cpp,i}:
* tao/default_server.{h,cpp,i}:
Removed i file and updated h/cpp file.
* orbsvcs/orbsvcs/Makefile.am
Updated for changes above
Wed Jan 5 11:50:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/Notify/Builder.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/ConsumerAdmin.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/CosNotify_Service.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Default_Factory.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/ETCL_Filter.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/ETCL_FilterFactory.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/EventChannel.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/EventChannelFactory.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/EventTypeSeq.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Method_Request_Dispatch.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Method_Request_Event.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Method_Request_Lookup.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Method_Request_Shutdown.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Method_Request_Updates.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Name_Value_Pair.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/ProxyConsumer_T.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/ProxySupplier_T.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Proxy_T.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/RT_Builder.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/RT_Factory.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/RT_Notify_Service.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/RT_POA_Helper.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Reconnection_Registry.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Refcountable.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/SupplierAdmin.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Timer_Queue.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Timer_Reactor.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Worker_Task.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Structured/RT_StructuredProxyPushSupplier.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Structured/StructuredEvent.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushConsumer.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushSupplier.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Structured/StructuredPushConsumer.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Structured/StructuredPushSupplier.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Sequence/Batch_Buffering_Strategy.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushConsumer.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushSupplier.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Sequence/SequencePushSupplier.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Any/AnyEvent.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushConsumer.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushSupplier.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Any/ProxyPushSupplier.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Any/PushConsumer.{h,cpp,inl}:
* orbsvcs/orbsvcs/Notify/Any/PushSupplier.{h,cpp,inl}:
Removed inl file and updated h/cpp file.
* orbsvcs/orbsvcs/Makefile.am
Updated for changes above
Wed Jan 5 11:29:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/SchedConfig_Scheduler.{h,cpp,i}:
* orbsvcs/orbsvcs/SchedReconfig_Sched_Utils.{h,cpp,i}:
* orbsvcs/orbsvcs/SchedReconfig_Sched_Utils_T.{h,cpp,i}:
* orbsvcs/orbsvcs/SchedReconfig_Scheduler.{h,cpp,i}:
* orbsvcs/orbsvcs/SchedReconfig_Scheduler_T.{h,cpp,i}:
* orbsvcs/orbsvcs/SchedScheduler.{h,cpp,i}:
* orbsvcs/orbsvcs/SchedScheduler_Generic.{h,cpp,i}:
* orbsvcs/orbsvcs/SchedStrategy_Scheduler.{h,cpp,i}:
Removed i file and updated h/cpp file.
* orbsvcs/orbsvcs/Makefile.am
Updated for changes above
Wed Jan 5 11:21:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/CosEvent/CEC_ConsumerControl.{h,cpp,i}:
* orbsvcs/orbsvcs/CosEvent/CEC_Dispatching.{h,cpp,i}:
* orbsvcs/orbsvcs/CosEvent/CEC_Factory.{h,cpp,i}:
* orbsvcs/orbsvcs/CosEvent/CEC_MT_Dispatching.{h,cpp,i}:
* orbsvcs/orbsvcs/CosEvent/CEC_Pulling_Strategy.{h,cpp,i}:
* orbsvcs/orbsvcs/CosEvent/CEC_SupplierControl.{h,cpp,i}:
Removed i file and updated h/cpp file.
* orbsvcs/orbsvcs/CosEvent/CEC_TypedProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_ProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_Reactive_ConsumerControl.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_Reactive_Pulling_Strategy.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_Reactive_SupplierControl.cpp:
Removed empty explicit instantiation block
* orbsvcs/orbsvcs/Makefile.am
Updated for changes above
Wed Jan 5 11:07:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/Event/ECG_Address_Server_Base.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/ECG_ConsumerEC_Control.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/ECG_Reactive_ConsumerEC_Control.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/ECG_Simple_Mcast_EH.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_And_Filter.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_Basic_Factory.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_Bitmask_Filter.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_Conjunction_Filter.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_ConsumerAdmin.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_ConsumerControl.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_Default_ProxyConsumer.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_Default_ProxySupplier.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_Disjunction_Filter.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_Dispatching.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_Event_Channel.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_Factory.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_Kokyu_Filter.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_MT_Dispatching.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_Masked_Type_Filter.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_Negation_Filter.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_Null_Factory.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_Priority_Dispatching.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_RTCORBA_Dispatching.{h,cpp,inl}:
* orbsvcs/orbsvcs/Event/EC_RTCORBA_Factory.{h,cpp,inl}:
* orbsvcs/orbsvcs/Event/EC_Reactive_Dispatching.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_Reactive_Timeout_Generator.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_Sched_Filter.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_Scheduling_Strategy.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_SupplierAdmin.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_SupplierControl.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_Supplier_Filter_Builder.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_Trivial_Supplier_Filter.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/EC_Type_Filter.{h,cpp,i}:
* orbsvcs/orbsvcs/Event/Local_ESTypes.{h,cpp,i}:
Removed i file and updated h/cpp file.
* orbsvcs/orbsvcs/Makefile.am
Updated for changes above
Wed Jan 5 10:50:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/RTPortableServer/RT_Acceptor_Filters.{h,cpp,i}:
* tao/RTPortableServer/RT_Collocation_Resolver.{h,cpp,i}:
Removed i file and updated h/cpp file.
* tao/Makefile.am
Updated for changes above
Wed Jan 5 10:16:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Messaging/Asynch_Reply_Dispatcher.{h,cpp,i}:
Removed i file and updated h/cpp file.
* tao/Makefile.am
Updated for changes above
Wed Jan 5 10:12:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/RTCORBA/Continuous_Priority_Mapping.{h,cpp,i}:
* tao/RTCORBA/Direct_Priority_Mapping.{h,cpp,i}:
* tao/RTCORBA/Linear_Network_Priority_Mapping.{h,cpp,i}:
* tao/RTCORBA/Linear_Priority_Mapping.{h,cpp,i}:
* tao/RTCORBA/Multi_Priority_Mapping.{h,cpp,i}:
* tao/RTCORBA/Network_Priority_Mapping.{h,cpp,i}:
* tao/RTCORBA/Priority_Mapping.{h,cpp,i}:
* tao/RTCORBA/RT_Current.{h,cpp,i}:
* tao/RTCORBA/RT_Invocation_Endpoint_Selectors.{h,cpp,i}:
* tao/RTCORBA/RT_Mutex.{h,cpp,i}:
* tao/RTCORBA/RT_ORB.{h,cpp,i}:
* tao/RTCORBA/RT_Policy_i.{h,cpp,i}:
* tao/RTCORBA/RT_Protocols_Hooks.{h,cpp,i}:
* tao/RTCORBA/RT_Thread_Lane_Resources_Manager.{h,cpp,i}:
* tao/RTCORBA/Thread_Pool.{h,cpp,i}:
All .i/.inl files above where empty, so removed them from the repo
and updated the h/cpp files to not include the removed file. In case
someone want to inline a method, must re-add the file at that moment
with the .inl extension. Also updated some wrong ACE_RCSID tags
* tao/Makefile.am
Updated for changes above
Tue Jan 4 17:55:15 2005 J.T. Conklin <jtc@acorntoolworks.com>
* Makefile.am:
* Release:
* configure.ac:
Updated for removal of tao-config.in and tao-config.1.in.
* tao-config.in:
* tao-config.1.in:
Removed.
Tue Jan 4 20:16:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Strategies/DIOP_Connection_Handler.{h,cpp,i}:
* tao/Strategies/DIOP_Profile.{h,cpp,i}:
* tao/Strategies/DIOP_Transport.{h,cpp,i}:
* tao/Strategies/SCIOP_Connection_Handler.{h,cpp,i}:
* tao/Strategies/SCIOP_Profile.{h,cpp,i}:
* tao/Strategies/SCIOP_Transport.{h,cpp,i}:
* tao/Strategies/SHMIOP_Acceptor.{h,cpp,i}:
* tao/Strategies/SHMIOP_Connection_Handler.{h,cpp,inl}:
* tao/Strategies/SHMIOP_Profile.{h,cpp,i}:
* tao/Strategies/SHMIOP_Transport.{h,cpp,i}:
* tao/Strategies/UIOP_Connection_Handler.{h,cpp,inl}:
* tao/Strategies/UIOP_Endpoint.cpp
* tao/Strategies/UIOP_Endpoint.h
* tao/Strategies/UIOP_Profile.{h,cpp,i}:
* tao/Strategies/UIOP_Transport.{h,cpp,i}:
* tao/Strategies/advanced_resource.{h,cpp,i}:
All .i/.inl files above where empty, so removed them from the repo
and updated the h/cpp files to not include the removed file. In case
someone want to inline a method, must re-add the file at that moment
with the .inl extension
* tao/Makefile.am
Updated for changes above
Tue Jan 4 19:53:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/BiDir_GIOP/BiDirPolicyC.{h,cpp,i,inl}:
Regenerated and replace .i with .inl files
* tao/BiDir_GIOP/diffs/BiDirPolicy.diff:
Updated
* tao/Makefile.am
Updated for change above
Tue Jan 4 19:42:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/BiDir_GIOP/BiDir_Policy_i.{h,cpp,inl}:
Removed empty .inl file and updated cpp/h file for this
* tao/Makefile.am
Updated for change above
Tue Jan 4 16:46:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Acceptor_Filter.{h,cpp,i}:
* tao/Acceptor_Impl.{h,cpp,i}:
* tao/Adapter.{h,cpp,i}:
* tao/Collocation_Resolver.{h,cpp,i}:
* tao/Connector_Impl.{h,cpp,inl}:
* tao/Default_Collocation_Resolver.{h,cpp,i}:
* tao/Default_Protocols_Hooks.{h,cpp,i}:
* tao/Default_Thread_Lane_Resources_Manager.{h,cpp,i}:
* tao/GIOP_Message_Base.{h,cpp,i}:
* tao/GIOP_Message_Generator_Parser.{h,cpp,inl}:
* tao/GIOP_Message_Generator_Parser_10.{h,cpp,inl}:
* tao/GIOP_Message_Generator_Parser_11.{h,inl}:
* tao/GIOP_Message_Generator_Parser_12.{h,cpp,inl}:
* tao/GIOP_Message_Lite.{h,cpp,i}:
* tao/GIOP_Utils.{h,cpp,i}:
* tao/IIOP_Connection_Handler.{h,cpp,i}:
* tao/IIOP_Profile.{h,cpp,i}:
* tao/IOR_Parser.{h,cpp,i}:
* tao/Objref_VarOut_T.{h,cpp,inl}:
* tao/Service_Callbacks.{h,cpp,i}:
* tao/corbafwd.{h,cpp,i}:
* tao/default_resource.{h,cpp,i}:
All .i/.inl files above where empty, so removed them from the repo
and updated the h/cpp files to not include the removed file. In case
someone want to inline a method, must re-add the file at that moment
with the .inl extension
* tao/Makefile.am
Updated for changes above
Tue Jan 4 13:03:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/PortableInterceptorS.h:
Regenerated
Tue Jan 4 12:54:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/ShortSeqA.cpp:
* tao/ShortSeqS.h:
Regenerated
* tao/ShortSeqC.{h,cpp,inl,i}:
Regenerated and replace .i with .inl files
* tao/Makefile.am:
Updated because of change above
Tue Jan 4 12:39:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/TAOA.cpp:
* tao/TAOC.{h,cpp,inl}:
* tao/TAOS.{h,cpp,i,inl}:
* tao/TAOS_T.{h,cpp,i,inl}:
Regenerated and replace .i with .inl files
* tao/Makefile.am:
Updated because of change above
Tue Jan 4 12:25:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/LongDoubleSeqS.h:
* tao/LongLongSeqS.h:
* tao/LongSeqS.h:
* tao/OctectSeqC.{h,cpp,inl}:
* tao/OctectSeqS.h:
* tao/OctectSeqA.cpp:
Regenerated with the latest version of the TAO_IDL compiler
* tao/OctetSeq.pidl:
Updated regeneration instructions
* tao/diffs/OctetSeq.diff:
Updated this diff
Tue Jan 4 12:09:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/IIOPC.{h,cpp,i,inl}:
Regenerated and replaced .i with .inl file
* tao/IIOPA.cpp:
Regenerated
* tao/Makefile.am:
Updated because of change above
* tao/diffs/IIOP.diff
Removed this file, not needed anymore
Tue Jan 4 12:05:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/IIOP_Transport.{h,cpp,i}:
Removed the empty .i file and updated the cpp and h file to not
include it anymore
* tao/Makefile.am:
Updated because of change above
Tue Jan 4 12:01:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/IIOP_EndpointsC.{h,cpp,i,inl}:
Regenerated and replaced .i with .inl file
* tao/IIOP_EndpointA.cpp:
Regenerated
* tao/IIOP_Endpoint.pidl:
Updated regeneration instructions
* tao/diffs/IIOP_Endpoints.diff:
Removed this file, not needed anymore
* tao/Makefile.am:
Updated because of change above
Tue Jan 4 11:33:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/BooleanSeqS.h:
* tao/DoubleSeqS.h:
Regenerated with the latest version of the TAO_IDL compiler
* tao/Bounds.pidl:
* tao/CharSeq.pid:
Updated regeneration instructions
Tue Jan 4 11:23:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/ULongLongSeqC.{h,cpp,inl}:
* tao/ULongLongSeqS.h:
* tao/StringSeqS.h:
* tao/AnySeqS.h:
Regenerated with the latest version of the TAO_IDL compiler
* tao/StringSeq.pidl:
No need to apply patches anymore
* tao/diffs/StringSeq.diff:
Removed this file, not needed anymore
Tue Jan 4 11:08:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/WrongTransaction.pidl:
Updated regeneration instructions, no need to apply diffs
* tao/diffs/UShortSeq.diff:
New diff file corresponding pidl file
* tao/WCharSeqC.{h,cpp,inl}:
* tao/WCharSeqS.h:
* tao/UShortSeqS.h:
* tao/ULongSeqS.h:
Regenerated with the latest version of the TAO_IDL compiler
* tao/UShortSeqC.{h,cpp,i,inl}:
* tao/ULongSeqC.{h,cpp,i,inl}:
Regenerated and replaced .i with .inl file
* tao/Makefile.am:
Updated because of changes above
Tue Jan 4 10:42:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/WStringSeqC.{h,cpp,inl}:
* tao/WStringSeqS.h:
Regenerated with the latest version of the TAO_IDL compiler
Tue Jan 4 10:15:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/FloatSeq.pidl:
Updated regeneration instructions
* tao/IIOP_Acceptor.cpp:
Updated debug message to get the same format as used on other
places
* tao/Invocation_Endpoint_Selectors.{h,cpp,i}:
* tao/LF_Invocation_Event.{h,cpp,inl}:
* tao/LF_Strategy.{h,cpp,inl}:
* tao/Object_Loader.{h,cpp,i}:
* tao/Pluggable_Messaging.{h,cpp,i}:
* tao/Sync_Strategies.{h,cpp,i}:
* tao/Thread_Lane_Resources_Manager.{h,cpp,i}:
Removed the empty .i/.inl file and updated the cpp and h file to not
include it anymore
* tao/LF_CH_Event.h:
This file included LF_Invocation_Event.inl which is totally wrong, so
zapped the include
* tao/Managed_Types.h:
Fixed typo in documentation
* tao/Pluggable_Messaging_Utils.h:
Converted documentation to doxygen style
* tao/Policy_Set.h:
* tao/Pseudo_VarOut_T.h:
Removed commented out code
* tao/PolicyFactory_Registry.h:
Small doxygen improvement
* tao/Profile.cpp:
Replaced ACE cast macros with their C++ versions
* tao/TSS_Resources.h:
Added include to TAO_Export.h, the export macro is used, so we need
to do this include
* tao/Makefile.am:
Updated for changes above
* tao/BiDir_GIOP/BiDir_ORBInitializer.h:
* tao/BiDir_GIOP/BiDir_Policy_i.h:
* tao/BiDir_GIOP/BiDir_PolicyFactory.h:
* tao/RTCORBA/RT_ORB.h:
* tao/RTCORBA/RT_Mutex.h:
* tao/RTCORBA/RT_Current.h:
* tao/RTCORBA/RT_PolicyFactory.h:
* tao/RTCORBA/RT_ORBInitializer.h:
* tao/RTCORBA/RT_Policy_i.h:
Removed checks for _MSC_VER >= 1200, just check for _MSC_VER
Tue Jan 4 09:42:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/FaultTolerance/FT_Invocation_Endpoint_Selectors.{h,cpp,inl}:
The cpp file was including the wrong inline file, the inline file was empty,
so just zapped it
* orbsvcs/orbsvcs/Makefile.am:
Removed FaultTolerance/FT_Invocation_Endpoint_Selectors.inl
Mon Jan 3 17:04:26 2005 J.T. Conklin <jtc@acorntoolworks.com>
* tao/Makefile.am:
Generate pkg-config *.pc files from templates.
* tao/BiDir_GIOP/TAO_BiDirGIOP.pc.in:
* tao/Domain/TAO_Domain.pc.in:
* tao/DynamicAny/TAO_DynamicAny.pc.in:
* tao/DynamicInterface/TAO_DynamicInterface.pc.in:
* tao/IFR_Client/TAO_IFR_Client.pc.in:
* tao/IORInterceptor/TAO_IORInterceptor.pc.in:
* tao/IORManipulation/TAO_IORManip.pc.in:
* tao/IORTable/TAO_IORTable.pc.in:
* tao/Messaging/TAO_Messaging.pc.in:
* tao/ObjRefTemplate/TAO_ObjRefTemplate.pc.in:
* tao/PortableServer/TAO_PortableServer.pc.in:
* tao/RTCORBA/TAO_RTCORBA.pc.in:
* tao/RTPortableServer/TAO_RTPortableServer.pc.in:
* tao/RTScheduling/TAO_RTScheduler.pc.in:
* tao/SmartProxies/TAO_SmartProxies.pc.in:
* tao/Strategies/TAO_Strategies.pc.in:
* tao/TAO.pc.in:
* tao/TAO_Utils.pc.in:
* tao/TypeCodeFactory/TAO_TypeCodeFactory.pc.in:
* tao/Valuetype/TAO_Valuetype.pc.in:
New files, pkg-config *.pc templates.
Mon Jan 3 11:31:35 2005 Dale Wilson <wilson_d@ociweb.com>
* NEWS:
Additional info on Notification Service changes.
Mon Jan 3 14:56:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/IIOP_Connection_Handler.cpp (open):
Added missing space in debug statement to get the same format as
used in the other debug messages
Mon Jan 3 08:02:33 2005 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* orbsvcs/examples/FaultTolerance/RolyPoly: Changed the use of
TMCast to ACE_TMCast. Thanks to J.T. Conklin for pointing out
the inconsistency.
Sun Jan 2 21:26:58 2005 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/driver/drv_preproc.cpp (DRV_cpp_init):
Moved the location of the check for the preprocessor
definition of TAO_IDL_INCLUDE_DIR to come after the
checks for TAO_ROOT and ACE_ROOT. This move changes
the logic so the environment variable is used if it is
set and TAO_IDL_INCLUDE_DIR is used otherwise, enabling
the path to orb.idl to be found both during and after
installation. Thanks to Ken Sedgwick <ken@bonsai.com>
for supplying the patch.
Sun Jan 2 14:21:21 2005 Carlos O'Ryan <coryan@atdesk.com>
* tests/Sequence_Unit_Tests/unbounded_object_reference_sequence.hpp:
Implement unbounded sequences of object references.
* tests/Sequence_Unit_Tests/Sequence_Unit_Tests.mpc:
* tests/Sequence_Unit_Tests/run_test.pl:
* tests/Sequence_Unit_Tests/unbounded_object_reference_sequence_ut.cpp:
Add a new unit test (still in progress) to test the object
reference sequences.
* tests/Sequence_Unit_Tests/generic_sequence.hpp:
Fixed a performance bug in length(...), the sequence was
reallocated and grown when not strictly needed.
Document in more detail why some code is not exception-safe, and
why it may not matter (applications that could depend on it are
non-conforming.)
* tests/Sequence_Unit_Tests/string_sequence_element.hpp:
Add missing #include.
Sun Jan 2 12:44:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/PSS/PSDL_Interface_Visitor.cpp:
* orbsvcs/PSS/PSDL_Struct_Visitor.cpp:
* orbsvcs/PSS/PSDL_Type_Dcl_Visitor.cpp:
Removed generation of check for ACE_HAS_GNUG_PRE_2_8, this is not
set anywhere anymore
Sat Jan 1 13:56:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/RTCORBA/Network_Priority_Mapping_Manager.h:
* tao/RTCORBA/Priority_Mapping_Manager.h:
* tao/RTScheduling/Current.h:
* tao/RTScheduling/RTScheduler_Manager.h:
* tao/Strategies/sciop_endpoints.h:
* tao/Strategies/uiop_endpoints.h:
Removed check for ACE_HAS_GNUG_PRE_2_8, this is not set anywhere
anymore
Sat Jan 1 13:41:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/IIOP_Endpoint.cpp:
Updated formatting of some debug messages to match the other
messages in TAO
* tao/ORBInitInfo.h:
Removed check for _MSC_VER >= 1200, this is always true, removed
check for ACE_HAS_GNUG_PRE_2_8, this define is nowhere set and
such old versions of GCC aren't usable anymore
* tao/UTF16_BOM_Factory.cpp:
Check argc before using argv[0], this can be unitialized memory
under VxWorks.
* TAO-INSTALL.html:
Corrected e-mail address of the TAO mailing list
Fri Dec 31 22:10:51 2004 J.T. Conklin <jtc@acorntoolworks.com>
* orbsvcs/ImplRepo_Service/ImR_Locator_i.h:
* orbsvcs/orbsvcs/Time_Utilities.cpp:
* orbsvcs/orbsvcs/Notify/Buffering_Strategy.h:
Changed #include "orbsvcs/orbsvcs/..." to #include "orbsvcs/..."
in files where it was missed or was inadvertantly reintroduced.
Thu Dec 30 13:22:25 2004 Chris Cleeland <cleeland@ociweb.com>
* TAO version 1.4.3 released.
Local Variables:
add-log-time-format: current-time-string
End:
|