-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
8647 lines (5866 loc) · 342 KB
/
Copy pathChangeLog
File metadata and controls
8647 lines (5866 loc) · 342 KB
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
Tue Apr 23 17:13:04 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/ImplRepo_Service/ImR_ResponseHandler.h:
* orbsvcs/ImplRepo_Service/ImplRepo_Service.mpc:
Scoreboard cleanup for QNX and corba_e builds.
Tue Apr 23 16:12:25 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/tests/ImplRepo/RestartServer/MessengerServer.cpp:
* orbsvcs/tests/ImplRepo/scale_clients/server.cpp:
* orbsvcs/tests/ImplRepo/servers_list/server.cpp:
More static-linked fixes.
Tue Apr 23 15:41:07 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/tests/ImplRepo/servers_interact_on_startup/server.cpp:
* orbsvcs/tests/ImplRepo/servers_interact_on_startup/servers_interact_on_startup.mpc:
Support for static-linked builds
Tue Apr 23 14:45:23 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* tao/IORTable/Async_IORTable.mpc:
* tao/IORTable/IORTable.mpc:
Be explicit with the resource and package file assignments.
Mon Apr 22 19:56:55 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* tao/IORTable/Async_IORTable.h:
* tao/IORTable/Async_IORTable.cpp:
* tao/IORTable/Async_IORTable.mpc:
* tao/IORTable/Async_IORTable.pidl:
* tao/IORTable/Async_IOR_Table_Impl.h:
* tao/IORTable/Async_IOR_Table_Impl.cpp:
* tao/IORTable/Async_Table_Adapter.h:
* tao/IORTable/Async_Table_Adapter.cpp:
* tao/IORTable/IORTable.mpc:
* tao/IORTable/Locate_ResponseHandler.h:
* tao/IORTable/Locate_ResponseHandler.inl:
* tao/IORTable/Locate_ResponseHandler.cpp:
* tao/IORTable/TAO_Async_IORTable.pc.in:
* tao/IORTable/TAO_Async_IORTable.rc:
Move the Async_IORTable sources back into the IORTable directory
even though it still builds as a separate library. This eases a
maintenance burden with some dependant projects that build the
ImR service.
* tests/IORTable_Locator/async_server.cpp:
* orbsvcs/ImplRepo_Service/INS_Locator.h:
These explicitly reference Async_IORTable headers.
* tao/Async_IORTable:
* tao/Async_IORTable/Async_IORTable.h:
* tao/Async_IORTable/Async_IORTable.cpp:
* tao/Async_IORTable/Async_IORTable.mpc:
* tao/Async_IORTable/Async_IORTable.pidl:
* tao/Async_IORTable/Async_IOR_Table_Impl.h:
* tao/Async_IORTable/Async_IOR_Table_Impl.cpp:
* tao/Async_IORTable/Async_Table_Adapter.h:
* tao/Async_IORTable/Async_Table_Adapter.cpp:
* tao/Async_IORTable/Locate_ResponseHandler.h:
* tao/Async_IORTable/Locate_ResponseHandler.inl:
* tao/Async_IORTable/Locate_ResponseHandler.cpp:
* tao/Async_IORTable/TAO_Async_IORTable.pc.in:
* tao/Async_IORTable/TAO_Async_IORTable.rc:
Removed these files.
Mon Apr 22 19:13:01 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/ImplRepo_Service/AsyncAccessManager.cpp:
* orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp:
* orbsvcs/ImplRepo_Service/LiveCheck.h:
* orbsvcs/ImplRepo_Service/LiveCheck.cpp:
Fix a memory leak related to liveness callback handlers.
Mon Apr 22 17:53:36 UTC 2013 Adam Mitz <mitza@ociweb.com>
* orbsvcs/ImplRepo_Service/ImplRepo_Service.mpc:
The ImR locator binary can't link to the ImR_Client library
since it should be using the async stubs instead.
Mon Apr 22 15:05:31 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* tao/ORB_Core.cpp:
Fix an uninitialized pointer
Mon Apr 22 14:54:18 UTC 2013 Adam Mitz <mitza@ociweb.com>
* tao/ImR_Client/ImplRepo.idl:
* tao/ImR_Client/ServerObject.idl:
Fixed fuzz errors.
Fri Apr 19 19:17:11 UTC 2013 Adam Mitz <mitza@ociweb.com>
* TAO_IDL/be/be_visitor_exception/exception_cs.cpp:
Fixed fuzz error in use of the new ACE log category macros.
Fri Apr 19 16:08:52 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/tests/FT_Naming/FaultTolerant/client.cpp:
* tao/Async_IORTable/Async_Table_Adapter.cpp:
Clean up covarity related issues.
* tao/Async_IORTable/Async_IOR_Table_Impl.cpp:
fix to ensure that if the Async IORTable is intialized with a
non-async capable locator, it still works.
* bin/tao_orb_tests.lst:
* tests/IORTable_Locator/Test.mpc:
* tests/IORTable_Locator/async_server.cpp:
* tests/IORTable_Locator/run_test.pl:
Added a new test variant to run the async IORTable locator as well
as the sync version.
Fri Apr 19 03:28:07 UTC 2013 Adam Mitz <mitza@ociweb.com>
* orbsvcs/ImplRepo_Service/ImplRepo_Service.mpc:
* orbsvcs/ImplRepo_Service/async_imr_client_export.h:
New async stubs lib can't have a dependency on imr_client.
Fixed generation of stubs and skeletons with correct export macro.
* tao/ImR_Client/ImR_Client.mpc:
Make sure not to run tao_idl in the non-idl project.
Thu Apr 18 22:32:11 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* MPC/config/imr_client.mpb:
Revert addition of messaging dependency.
* orbsvcs/ImplRepo_Service/ImR_Activator.idl:
* orbsvcs/ImplRepo_Service/ImplRepo_Service.mpc:
* orbsvcs/ImplRepo_Service/Iterator.h:
* orbsvcs/ImplRepo_Service/LiveCheck.h:
* orbsvcs/ImplRepo_Service/Server_Info.h:
* orbsvcs/ImplRepo_Service/tao_imr_i.h:
* orbsvcs/ImplRepo_Service/utils.h:
In order to shield client applications from the AMI/AMH imposed
dependencies, the project now makes a local compilation of the
ImR_Client based stubs and skeletons with the async modifiers.
* tao/ImR_Client/ImR_Client.mpc:
* tao/ImR_Client/ImplRepo.idl:
* tao/ImR_Client/ServerObject.idl:
As a companion to the above change, this restores the more narrow
dependency so that clients of the ImR do not need to load the messaging
library.
* tao/ImR_Client/ImplRepo.pidl:
* tao/ImR_Client/ServerObject.pidl:
Removed these files. It was necessary to rename from .pidl to .idl so
the stub/skeleton includes would be generated correctly. There is nothing
pseudo about these idls anyway so no need to use .pidl.
Thu Apr 18 19:37:19 UTC 2013 Adam Mitz <mitza@ociweb.com>
* orbsvcs/ImplRepo_Service/ImR_Locator_i.h:
* orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp:
* utils/logWalker/HostProcess.cpp:
Fixed compiler warnings.
Thu Apr 18 13:18:10 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/ImplRepo_Service/ImR_Locator_i.h:
* orbsvcs/ImplRepo_Service/LiveCheck.cpp:
* orbsvcs/ImplRepo_Service/Locator_Options.cpp:
Scoreboard cleanup.
Thu Apr 18 07:26:52 UTC 2013 Martin Corino <mcorino@remedy.nl>
* bin/tao_orb_tests.lst:
* tests/IORTable_Locator/Test.mpc:
* tests/IORTable_Locator/client.cpp:
* tests/IORTable_Locator/run_test.pl:
* tests/IORTable_Locator/server.cpp:
* tests/IORTable_Locator/simple_test.idl:
* tests/IORTable_Locator/simple_test_i.h:
* tests/IORTable_Locator/simple_test_i.cpp:
Added simple test to test corbaloc resolving through
IORTable::Locator (*not* collocated like in
Bug_3790_Regression test).
Wed Apr 17 19:00:17 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* bin/tao_other_tests.lst:
* orbsvcs/ImplRepo_Service/ImR_Locator_i.h:
* orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp:
* orbsvcs/ImplRepo_Service/Locator_Options.h:
* orbsvcs/ImplRepo_Service/Locator_Options.cpp:
Servers may be started externally to the ImR but register with
it so that clients may still be forwarded to it. Traditionally,
such servers are not pinged by the ImR in the spirit that since
its own means were used to activate the service, the ImR should
let the client deal with the server no matter the consequences.
However, the ImR is in a position to give more information to the
client or lists of active servers, so enabling the ping_external_
option will override the assumption of liveness and actively ping,
based on the existing rules, all registered servers.
* orbsvcs/tests/ImplRepo/ReconnectServer/run_test.pl:
Added a new test variant to run the new feature.
Wed Apr 17 14:19:35 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp:
* tao/ORB.cpp:
* tao/ORB_Core.h:
* tao/ORB_Core.inl:
* tao/ORB_Core.cpp:
* tao/objectid.h:
Make explicit the distinction between the traditional IORTable and the
Asynchronous version used with the ImplRepo service.
Wed Apr 17 12:54:37 UTC 2013 Adam Mitz <mitza@ociweb.com>
* orbsvcs/orbsvcs/Log_Macros.h:
Added empty comments for fuzz script.
Wed Apr 17 07:06:17 UTC 2013 Martin Corino <mcorino@remedy.nl>
* tao/Transport.h:
* tao/Transport.cpp:
Change return type of method. Fixes VC8 warnings.
Tue Apr 16 19:46:38 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/ImplRepo_Service/ImR_Locator_i.h:
* orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp:
* orbsvcs/ImplRepo_Service/LiveCheck.h:
* orbsvcs/ImplRepo_Service/LiveCheck.cpp:
* orbsvcs/ImplRepo_Service/Locator_Repository.h:
* orbsvcs/ImplRepo_Service/Locator_Repository.cpp:
Fix for the regression failure with the ReconnectServer test.
Tue Apr 16 14:51:42 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* tao/Messaging/AMH_Response_Handler.cpp:
Fix to the previous fix. I was too cavalier in copying the CORBA
subset macro tests from the ForwardRequest.pidl file.
Tue Apr 16 14:25:30 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* tao/IORTable/IOR_Table_Impl.h:
Add the export macro on the class definition as well as the
forward declaration.
* tao/Messaging/AMH_Response_Handler.cpp:
Ensure the library can be built even on CORBA subset builds.
Mon Apr 15 19:49:48 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/tests/ImplRepo/servers_interact_on_startup/run_test.pl:
Fix the timing on the test so the condition being tested is actually
allowed to occur. The total ping retry schedule is about 15 seconds,
so a 20 second timeout means the threshold is exceeded. When the
full ping retry schedule is exhausted, the IMR gives up and returns
the IOR, letting the client deal with the server directly. In this
case, doing so meant the client got a transient exception and thus
failed.
Tue Apr 16 03:10:56 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* MPC/config/async_iortable.mpb:
* tao/Async_IORTable/Async_IORTable.cpp:
* tao/Async_IORTable/Async_Table_Adapter.cpp:
* tao/IORTable/IOR_Table_Impl.h:
clean up some scoreboard issues for visibility builds.
Mon Apr 15 17:03:16 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* tao/Async_IORTable/Async_IORTable.mpc:
Fixed the project name for uniqueness.
Mon Apr 15 16:48:16 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* MPC/config/async_iortable.mpb:
* MPC/config/imr_client.mpb:
* MPC/config/iortable.mpb:
* orbsvcs/ImplRepo_Service/INS_Locator.h:
* orbsvcs/ImplRepo_Service/ImplRepo_Service.mpc:
* tao/Async_IORTable:
* tao/Async_IORTable/Async_IORTable.h:
* tao/Async_IORTable/Async_IORTable.cpp:
* tao/Async_IORTable/Async_IORTable.mpc:
* tao/Async_IORTable/Async_IORTable.pidl:
* tao/Async_IORTable/Async_IOR_Table_Impl.h:
* tao/Async_IORTable/Async_IOR_Table_Impl.cpp:
* tao/Async_IORTable/Async_Table_Adapter.h:
* tao/Async_IORTable/Async_Table_Adapter.cpp:
* tao/Async_IORTable/Locate_ResponseHandler.h:
* tao/Async_IORTable/Locate_ResponseHandler.inl:
* tao/Async_IORTable/Locate_ResponseHandler.cpp:
* tao/Async_IORTable/TAO_Async_IORTable.pc.in:
* tao/Async_IORTable/TAO_Async_IORTable.rc:
* tao/IORTable/IORTable.h:
* tao/IORTable/IORTable.mpc:
* tao/IORTable/IORTable.pidl:
* tao/IORTable/IOR_Table_Impl.h:
* tao/IORTable/IOR_Table_Impl.cpp:
* tao/IORTable/Table_Adapter.h:
* tao/IORTable/Table_Adapter.cpp:
* tao/ORB_Core.cpp:
* tao/IORTable/Locate_ResponseHandler.h:
* tao/IORTable/Locate_ResponseHandler.inl:
* tao/IORTable/Locate_ResponseHandler.cpp:
Refactored the IORTable to restore the minimal dependency of
the base library so that small footprint builds can continue
using the IORTable as needed. The new features added to support
asynchronous use of the IMR are now in a new library. While the
new Async_IORTable is registered as a distinct object in the
service object registry, the ORB Core will load it if present
when an application uses resolve_initial_references ("IORTable").
Right now the only use case for the async ior table is with the
IMR, which has its own implementation of the locator objeect.
Mon Apr 15 14:26:39 UTC 2013 Adam Mitz <mitza@ociweb.com>
* MPC/config/ftclientorb.mpb:
* MPC/config/ftserverorb.mpb:
* MPC/config/notify_monitor_control.mpb:
* MPC/config/portablegroup.mpb:
* orbsvcs/IFR_Service/IFR_Service.mpc:
* orbsvcs/tests/FT_App/FT_App.mpc:
Added svc_utils for static link.
Mon Apr 15 14:12:56 UTC 2013 Adam Mitz <mitza@ociweb.com>
* MPC/config/naming.mpb:
* orbsvcs/orbsvcs/SSLIOP.mpc:
Added svc_utils base project.
Fri Apr 12 22:41:43 UTC 2013 Adam Mitz <mitza@ociweb.com>
* orbsvcs/orbsvcs/Svc_Utils.mpc:
* orbsvcs/orbsvcs/Log_Macros.h:
* orbsvcs/orbsvcs/Log_Macros.cpp:
Added a distinct ACE Log Category for orbsvcs.
* orbsvcs/Concurrency_Service/Concurrency_Service.cpp:
* orbsvcs/Dump_Schedule/Dump_Schedule.cpp:
* orbsvcs/Event_Service/Event_Service.cpp:
* orbsvcs/FTRT_Event_Service/Event_Service/FT_EventService.cpp:
* orbsvcs/FTRT_Event_Service/Factory_Service/EventChannelFactory_i.cpp:
* orbsvcs/FTRT_Event_Service/Factory_Service/FTRTEC_Factory_Service.cpp:
* orbsvcs/FTRT_Event_Service/Factory_Service/FTRTEC_Factory_Service.mpc:
* orbsvcs/FTRT_Event_Service/Gateway_Service/FTRTEC_Gateway_Service.cpp:
* orbsvcs/FT_Naming_Service/FT_Naming_Main.cpp:
* orbsvcs/FT_ReplicationManager/FT_DefaultFaultAnalyzer.cpp:
* orbsvcs/FT_ReplicationManager/FT_FaultConsumer.cpp:
* orbsvcs/FT_ReplicationManager/FT_FaultEventDescriptor.cpp:
* orbsvcs/FT_ReplicationManager/FT_ReplicationManager.cpp:
* orbsvcs/FT_ReplicationManager/FT_ReplicationManager.mpc:
* orbsvcs/FT_ReplicationManager/FT_ReplicationManagerFaultAnalyzer.cpp:
* orbsvcs/Fault_Detector/FT_FaultDetectorFactory_i.cpp:
* orbsvcs/Fault_Detector/Fault_Detector.mpc:
* orbsvcs/Fault_Detector/Fault_Detector_i.cpp:
* orbsvcs/Fault_Notifier/FT_Notifier_i.cpp:
* orbsvcs/IFR_Service/IFR_Server.cpp:
* orbsvcs/IFR_Service/IFR_Service.mpc:
* orbsvcs/IFR_Service/be_global.cpp:
* orbsvcs/IFR_Service/be_init.cpp:
* orbsvcs/IFR_Service/be_produce.cpp:
* orbsvcs/IFR_Service/be_util.cpp:
* orbsvcs/IFR_Service/ifr_adding_visitor.cpp:
* orbsvcs/IFR_Service/ifr_adding_visitor_exception.cpp:
* orbsvcs/IFR_Service/ifr_adding_visitor_operation.cpp:
* orbsvcs/IFR_Service/ifr_adding_visitor_structure.cpp:
* orbsvcs/IFR_Service/ifr_adding_visitor_union.cpp:
* orbsvcs/IFR_Service/ifr_removing_visitor.cpp:
* orbsvcs/ImplRepo_Service/Activator_Loader.cpp:
* orbsvcs/ImplRepo_Service/Activator_Options.cpp:
* orbsvcs/ImplRepo_Service/Adapter_Activator.cpp:
* orbsvcs/ImplRepo_Service/Config_Backing_Store.cpp:
* orbsvcs/ImplRepo_Service/Forwarder.cpp:
* orbsvcs/ImplRepo_Service/ImR_Activator.cpp:
* orbsvcs/ImplRepo_Service/ImR_Activator_i.cpp:
* orbsvcs/ImplRepo_Service/ImR_Locator.cpp:
* orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp:
* orbsvcs/ImplRepo_Service/ImplRepo_Service.mpc:
* orbsvcs/ImplRepo_Service/Locator_Loader.cpp:
* orbsvcs/ImplRepo_Service/Locator_Options.cpp:
* orbsvcs/ImplRepo_Service/Locator_Repository.cpp:
* orbsvcs/ImplRepo_Service/Shared_Backing_Store.cpp:
* orbsvcs/ImplRepo_Service/XML_Backing_Store.cpp:
* orbsvcs/ImplRepo_Service/tao_imr_i.cpp:
* orbsvcs/LifeCycle_Service/Factory_Trader.cpp:
* orbsvcs/LifeCycle_Service/LifeCycle_Service.cpp:
* orbsvcs/LifeCycle_Service/LifeCycle_Service_i.cpp:
* orbsvcs/LoadBalancer/LoadBalancer.mpc:
* orbsvcs/LoadBalancer/LoadManager.cpp:
* orbsvcs/LoadBalancer/LoadMonitor.cpp:
* orbsvcs/LoadBalancer/Monitor_Signal_Handler.cpp:
* orbsvcs/LoadBalancer/Push_Handler.cpp:
* orbsvcs/LoadBalancer/Signal_Handler.cpp:
* orbsvcs/Logging_Service/Basic_Logging_Service/Basic_Logging_Server.cpp:
* orbsvcs/Logging_Service/Basic_Logging_Service/Basic_Logging_Service.cpp:
* orbsvcs/Logging_Service/Event_Logging_Service/Event_Logging_Server.cpp:
* orbsvcs/Logging_Service/Event_Logging_Service/Event_Logging_Service.cpp:
* orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Server.cpp:
* orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Service.cpp:
* orbsvcs/Logging_Service/RTEvent_Logging_Service/RTEvent_Logging_Server.cpp:
* orbsvcs/Logging_Service/RTEvent_Logging_Service/RTEvent_Logging_Service.cpp:
* orbsvcs/Naming_Service/NT_Naming_Server.cpp:
* orbsvcs/Naming_Service/NT_Naming_Service.cpp:
* orbsvcs/Naming_Service/Naming_Server.cpp:
* orbsvcs/Notify_Service/NT_Notify_Server.cpp:
* orbsvcs/Notify_Service/Notify_Server.cpp:
* orbsvcs/Notify_Service/Notify_Service.cpp:
* orbsvcs/Scheduling_Service/Scheduling_Service.cpp:
* orbsvcs/TAO_Service/TAO_Service.cpp:
* orbsvcs/TAO_Service/TAO_Service.mpc:
* orbsvcs/Time_Service/Clerk_i.cpp:
* orbsvcs/Time_Service/Server_i.cpp:
* orbsvcs/Time_Service/Time_Service_Clerk.cpp:
* orbsvcs/Time_Service/Time_Service_Server.cpp:
* orbsvcs/Trading_Service/Trading_Server.cpp:
* orbsvcs/Trading_Service/Trading_Service.cpp:
* orbsvcs/orbsvcs/AV.mpc:
* orbsvcs/orbsvcs/AV/AVStreams_i.inl:
* orbsvcs/orbsvcs/AV/AVStreams_i.cpp:
* orbsvcs/orbsvcs/AV/AV_Core.cpp:
* orbsvcs/orbsvcs/AV/Endpoint_Strategy.cpp:
* orbsvcs/orbsvcs/AV/Endpoint_Strategy_T.cpp:
* orbsvcs/orbsvcs/AV/FlowSpec_Entry.inl:
* orbsvcs/orbsvcs/AV/FlowSpec_Entry.cpp:
* orbsvcs/orbsvcs/AV/Flows_T.cpp:
* orbsvcs/orbsvcs/AV/MCast.cpp:
* orbsvcs/orbsvcs/AV/Policy.cpp:
* orbsvcs/orbsvcs/AV/Protocol_Factory.cpp:
* orbsvcs/orbsvcs/AV/QoS_UDP.cpp:
* orbsvcs/orbsvcs/AV/RTCP.cpp:
* orbsvcs/orbsvcs/AV/RTCP_Channel.cpp:
* orbsvcs/orbsvcs/AV/RTCP_Packet.cpp:
* orbsvcs/orbsvcs/AV/RTP.cpp:
* orbsvcs/orbsvcs/AV/SCTP_SEQ.cpp:
* orbsvcs/orbsvcs/AV/TCP.cpp:
* orbsvcs/orbsvcs/AV/Transport.cpp:
* orbsvcs/orbsvcs/AV/UDP.cpp:
* orbsvcs/orbsvcs/AV/default_resource.cpp:
* orbsvcs/orbsvcs/AV/sfp.cpp:
* orbsvcs/orbsvcs/Concurrency/CC_Lock.cpp:
* orbsvcs/orbsvcs/Concurrency/CC_LockSet.cpp:
* orbsvcs/orbsvcs/Concurrency/Concurrency_Utils.cpp:
* orbsvcs/orbsvcs/CosConcurrency.mpc:
* orbsvcs/orbsvcs/CosEvent/CEC_Default_Factory.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_Dispatching_Task.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_DynamicImplementation.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_Event_Loader.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_MT_Dispatching.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_ProxyPushSupplier.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_Reactive_ConsumerControl.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_TypedEventChannel.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_TypedProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/CosLoadBalancing.mpc:
* orbsvcs/orbsvcs/CosNaming.mpc:
* orbsvcs/orbsvcs/CosNotification.mpc:
* orbsvcs/orbsvcs/CosProperty.mpc:
* orbsvcs/orbsvcs/Event/ECG_CDR_Message_Receiver.cpp:
* orbsvcs/orbsvcs/Event/ECG_CDR_Message_Sender.cpp:
* orbsvcs/orbsvcs/Event/ECG_Complex_Address_Server.cpp:
* orbsvcs/orbsvcs/Event/ECG_Mcast_EH.cpp:
* orbsvcs/orbsvcs/Event/ECG_Mcast_Gateway.cpp:
* orbsvcs/orbsvcs/Event/ECG_Reactive_ConsumerEC_Control.cpp:
* orbsvcs/orbsvcs/Event/ECG_Reconnect_ConsumerEC_Control.cpp:
* orbsvcs/orbsvcs/Event/ECG_Simple_Mcast_EH.cpp:
* orbsvcs/orbsvcs/Event/ECG_UDP_EH.cpp:
* orbsvcs/orbsvcs/Event/ECG_UDP_Receiver.inl:
* orbsvcs/orbsvcs/Event/ECG_UDP_Receiver.cpp:
* orbsvcs/orbsvcs/Event/ECG_UDP_Sender.cpp:
* orbsvcs/orbsvcs/Event/EC_Default_Factory.cpp:
* orbsvcs/orbsvcs/Event/EC_Default_ProxyConsumer.cpp:
* orbsvcs/orbsvcs/Event/EC_Default_ProxySupplier.cpp:
* orbsvcs/orbsvcs/Event/EC_Dispatching_Task.cpp:
* orbsvcs/orbsvcs/Event/EC_Gateway_IIOP.cpp:
* orbsvcs/orbsvcs/Event/EC_Gateway_IIOP_Factory.cpp:
* orbsvcs/orbsvcs/Event/EC_Kokyu_Dispatching.cpp:
* orbsvcs/orbsvcs/Event/EC_Kokyu_Factory.cpp:
* orbsvcs/orbsvcs/Event/EC_Kokyu_Filter.cpp:
* orbsvcs/orbsvcs/Event/EC_Kokyu_Filter_Builder.cpp:
* orbsvcs/orbsvcs/Event/EC_MT_Dispatching.cpp:
* orbsvcs/orbsvcs/Event/EC_Per_Supplier_Filter.cpp:
* orbsvcs/orbsvcs/Event/EC_Priority_Dispatching.cpp:
* orbsvcs/orbsvcs/Event/EC_Priority_Scheduling.cpp:
* orbsvcs/orbsvcs/Event/EC_Reactive_ConsumerControl.cpp:
* orbsvcs/orbsvcs/Event/EC_Reactive_SupplierControl.cpp:
* orbsvcs/orbsvcs/Event/EC_Sched_Factory.cpp:
* orbsvcs/orbsvcs/Event/EC_Sched_Filter.cpp:
* orbsvcs/orbsvcs/Event/EC_TPC_Dispatching.cpp:
* orbsvcs/orbsvcs/Event/EC_TPC_Factory.cpp:
* orbsvcs/orbsvcs/Event/EC_TPC_ProxyConsumer.cpp:
* orbsvcs/orbsvcs/Event/EC_TPC_ProxySupplier.inl:
* orbsvcs/orbsvcs/Event/EC_TPC_ProxySupplier.cpp:
* orbsvcs/orbsvcs/Event/EC_Thread_Flags.cpp:
* orbsvcs/orbsvcs/Event/EC_Timeout_Filter.cpp:
* orbsvcs/orbsvcs/Event/EC_Timeout_Generator.cpp:
* orbsvcs/orbsvcs/Event_Utilities.cpp:
* orbsvcs/orbsvcs/FTORB.mpc:
* orbsvcs/orbsvcs/FaultTolerance/FT_ClientPolicy_i.cpp:
* orbsvcs/orbsvcs/FaultTolerance/FT_ClientRequest_Interceptor.cpp:
* orbsvcs/orbsvcs/FaultTolerance/FT_IOGR_Property.cpp:
* orbsvcs/orbsvcs/FaultTolerance/FT_Invocation_Endpoint_Selectors.cpp:
* orbsvcs/orbsvcs/FaultTolerance/FT_ServerRequest_Interceptor.cpp:
* orbsvcs/orbsvcs/FtRtEvent.mpc:
* orbsvcs/orbsvcs/FtRtEvent/ClientORB/FTRT_ClientORB_Interceptor.cpp:
* orbsvcs/orbsvcs/FtRtEvent/EventChannel/ConnectionHandler_T.cpp:
* orbsvcs/orbsvcs/FtRtEvent/EventChannel/FTEC_ConsumerAdmin.cpp:
* orbsvcs/orbsvcs/FtRtEvent/EventChannel/FTEC_Event_Channel.cpp:
* orbsvcs/orbsvcs/FtRtEvent/EventChannel/FTEC_Group_Manager.cpp:
* orbsvcs/orbsvcs/FtRtEvent/EventChannel/Fault_Detector.cpp:
* orbsvcs/orbsvcs/FtRtEvent/EventChannel/Fault_Detector_Loader.cpp:
* orbsvcs/orbsvcs/FtRtEvent/EventChannel/Fault_Detector_T.cpp:
* orbsvcs/orbsvcs/FtRtEvent/EventChannel/ForwardCtrlServerInterceptor.cpp:
* orbsvcs/orbsvcs/FtRtEvent/EventChannel/FtEventServiceInterceptor.cpp:
* orbsvcs/orbsvcs/FtRtEvent/EventChannel/GroupInfoPublisher.cpp:
* orbsvcs/orbsvcs/FtRtEvent/EventChannel/IOGR_Maker.cpp:
* orbsvcs/orbsvcs/FtRtEvent/EventChannel/Identification_Service.cpp:
* orbsvcs/orbsvcs/FtRtEvent/EventChannel/Set_Update_Interceptor.cpp:
* orbsvcs/orbsvcs/FtRtEvent/EventChannel/UpdateableHandler.cpp:
* orbsvcs/orbsvcs/FtRtEvent/Utils/FTEC_Gateway.cpp:
* orbsvcs/orbsvcs/FtRtEvent/Utils/Log.inl:
* orbsvcs/orbsvcs/FtRtEvent/Utils/Log.cpp:
* orbsvcs/orbsvcs/FtRtEvent/Utils/resolve_init.h:
* orbsvcs/orbsvcs/HTIOP.mpc:
* orbsvcs/orbsvcs/HTIOP/HTIOP_Acceptor.cpp:
* orbsvcs/orbsvcs/HTIOP/HTIOP_Completion_Handler.cpp:
* orbsvcs/orbsvcs/HTIOP/HTIOP_Connection_Handler.cpp:
* orbsvcs/orbsvcs/HTIOP/HTIOP_Connector.cpp:
* orbsvcs/orbsvcs/HTIOP/HTIOP_Endpoint.cpp:
* orbsvcs/orbsvcs/HTIOP/HTIOP_Profile.cpp:
* orbsvcs/orbsvcs/HTIOP/HTIOP_Transport.cpp:
* orbsvcs/orbsvcs/IFRService/IFR_Service_Utils.cpp:
* orbsvcs/orbsvcs/IFRService/IRObject_i.cpp:
* orbsvcs/orbsvcs/IFRService/OperationDef_i.cpp:
* orbsvcs/orbsvcs/IFRService/Options.cpp:
* orbsvcs/orbsvcs/IFRService/Repository_i.cpp:
* orbsvcs/orbsvcs/IOR_Multicast.cpp:
* orbsvcs/orbsvcs/LoadBalancing/LB_CPU_Utilization_Monitor.cpp:
* orbsvcs/orbsvcs/LoadBalancing/LB_LeastLoaded.cpp:
* orbsvcs/orbsvcs/LoadBalancing/LB_LoadAlert_Handler.cpp:
* orbsvcs/orbsvcs/LoadBalancing/LB_LoadAverage.cpp:
* orbsvcs/orbsvcs/LoadBalancing/LB_LoadManager.cpp:
* orbsvcs/orbsvcs/LoadBalancing/LB_LoadMinimum.cpp:
* orbsvcs/orbsvcs/LoadBalancing/LB_MemberLocator.cpp:
* orbsvcs/orbsvcs/LoadBalancing/LB_ObjectReferenceFactory.cpp:
* orbsvcs/orbsvcs/LoadBalancing/LB_Pull_Handler.cpp:
* orbsvcs/orbsvcs/LoadBalancing/LB_Random.cpp:
* orbsvcs/orbsvcs/LoadBalancing/LB_ServerRequestInterceptor.cpp:
* orbsvcs/orbsvcs/Log/Hash_LogRecordStore.cpp:
* orbsvcs/orbsvcs/Log/Log_i.cpp:
* orbsvcs/orbsvcs/Naming/FaultTolerant/FT_Naming_Manager.cpp:
* orbsvcs/orbsvcs/Naming/FaultTolerant/FT_Naming_Replication_Manager.cpp:
* orbsvcs/orbsvcs/Naming/FaultTolerant/FT_Naming_Server.cpp:
* orbsvcs/orbsvcs/Naming/FaultTolerant/FT_PG_Group_Factory.cpp:
* orbsvcs/orbsvcs/Naming/FaultTolerant/FT_PG_Object_Group_Storable.cpp:
* orbsvcs/orbsvcs/Naming/FaultTolerant/FT_Persistent_Naming_Context.cpp:
* orbsvcs/orbsvcs/Naming/FaultTolerant/FT_Storable_Naming_Context.cpp:
* orbsvcs/orbsvcs/Naming/FaultTolerant/nsgroup_svc.cpp:
* orbsvcs/orbsvcs/Naming/Naming_Client.cpp:
* orbsvcs/orbsvcs/Naming/Naming_Loader.cpp:
* orbsvcs/orbsvcs/Naming/Naming_Server.cpp:
* orbsvcs/orbsvcs/Naming/Naming_Service_Container.cpp:
* orbsvcs/orbsvcs/Naming/Persistent_Context_Index.cpp:
* orbsvcs/orbsvcs/Naming/Storable_Naming_Context.cpp:
* orbsvcs/orbsvcs/Notify/Admin.cpp:
* orbsvcs/orbsvcs/Notify/AllocTracker.h:
* orbsvcs/orbsvcs/Notify/Any/AnyEvent.cpp:
* orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushSupplier.cpp:
* orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Any/ProxyPushSupplier.cpp:
* orbsvcs/orbsvcs/Notify/Any/PushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Buffering_Strategy.cpp:
* orbsvcs/orbsvcs/Notify/Consumer.cpp:
* orbsvcs/orbsvcs/Notify/ConsumerAdmin.cpp:
* orbsvcs/orbsvcs/Notify/CosNotify_Service.cpp:
* orbsvcs/orbsvcs/Notify/Delivery_Request.cpp:
* orbsvcs/orbsvcs/Notify/ETCL_Filter.cpp:
* orbsvcs/orbsvcs/Notify/ETCL_FilterFactory.cpp:
* orbsvcs/orbsvcs/Notify/Event.cpp:
* orbsvcs/orbsvcs/Notify/EventChannel.cpp:
* orbsvcs/orbsvcs/Notify/EventChannelFactory.cpp:
* orbsvcs/orbsvcs/Notify/EventType.cpp:
* orbsvcs/orbsvcs/Notify/EventTypeSeq.cpp:
* orbsvcs/orbsvcs/Notify/Event_Manager.cpp:
* orbsvcs/orbsvcs/Notify/Method_Request_Dispatch.cpp:
* orbsvcs/orbsvcs/Notify/Method_Request_Lookup.cpp:
* orbsvcs/orbsvcs/Notify/MonitorControl/MonitorManager.cpp:
* orbsvcs/orbsvcs/Notify/MonitorControl/NotificationServiceMonitor_i.cpp:
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MC_Notify_Service.cpp:
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorConsumerAdmin.cpp:
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorEventChannel.cpp:
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorProxySupplier_T.cpp:
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorSupplierAdmin.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Constraint_Interpreter.cpp:
* orbsvcs/orbsvcs/Notify/Notify_EventChannelFactory_i.cpp:
* orbsvcs/orbsvcs/Notify/Object.cpp:
* orbsvcs/orbsvcs/Notify/POA_Helper.cpp:
* orbsvcs/orbsvcs/Notify/Persistent_File_Allocator.cpp:
* orbsvcs/orbsvcs/Notify/Properties.cpp:
* orbsvcs/orbsvcs/Notify/ProxyConsumer.cpp:
* orbsvcs/orbsvcs/Notify/RT_Notify_Service.cpp:
* orbsvcs/orbsvcs/Notify/RT_POA_Helper.cpp:
* orbsvcs/orbsvcs/Notify/Random_File.cpp:
* orbsvcs/orbsvcs/Notify/Reconnection_Registry.cpp:
* orbsvcs/orbsvcs/Notify/Refcountable.cpp:
* orbsvcs/orbsvcs/Notify/Routing_Slip.cpp:
* orbsvcs/orbsvcs/Notify/Routing_Slip_Persistence_Manager.cpp:
* orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushSupplier.cpp:
* orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Standard_Event_Persistence.cpp:
* orbsvcs/orbsvcs/Notify/Structured/StructuredEvent.cpp:
* orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushSupplier.cpp:
* orbsvcs/orbsvcs/Notify/Structured/StructuredPushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/SupplierAdmin.cpp:
* orbsvcs/orbsvcs/Notify/ThreadPool_Task.cpp:
* orbsvcs/orbsvcs/Notify/Validate_Client_Task.cpp:
* orbsvcs/orbsvcs/Notify/Validate_Worker_T.cpp:
* orbsvcs/orbsvcs/Notify/XML_Loader.cpp:
* orbsvcs/orbsvcs/Notify/XML_Saver.cpp:
* orbsvcs/orbsvcs/Notify/XML_Topology_Factory.cpp:
* orbsvcs/orbsvcs/PortableGroup.mpc:
* orbsvcs/orbsvcs/PortableGroup/Fragments_Cleanup_Strategy.cpp:
* orbsvcs/orbsvcs/PortableGroup/PG_FactoryRegistry.cpp:
* orbsvcs/orbsvcs/PortableGroup/PG_Group_Factory.cpp:
* orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp:
* orbsvcs/orbsvcs/PortableGroup/PG_Object_Group.cpp:
* orbsvcs/orbsvcs/PortableGroup/PG_Object_Group_Manipulator.cpp:
* orbsvcs/orbsvcs/PortableGroup/PG_Property_Set.cpp:
* orbsvcs/orbsvcs/PortableGroup/PortableGroup_Acceptor_Registry.cpp:
* orbsvcs/orbsvcs/PortableGroup/PortableGroup_ORBInitializer.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Acceptor.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Connection_Handler.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Connector.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Endpoint.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Factory.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Mcast_Connection_Handler.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Mcast_Transport.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Profile.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport_Recv_Packet.cpp:
* orbsvcs/orbsvcs/PortableGroup/miop_resource.cpp:
* orbsvcs/orbsvcs/Property/CosPropertyService_i.cpp:
* orbsvcs/orbsvcs/Runtime_Scheduler.cpp:
* orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Connector.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Acceptor.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_CredentialsAcquirer.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Endpoint.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Factory.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Invocation_Interceptor.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_ORBInitializer.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.cpp:
* orbsvcs/orbsvcs/Sched/Config_Scheduler.cpp:
* orbsvcs/orbsvcs/Sched/DynSched.cpp:
* orbsvcs/orbsvcs/Sched/Reconfig_Sched_Utils.cpp:
* orbsvcs/orbsvcs/Sched/Reconfig_Sched_Utils_T.cpp:
* orbsvcs/orbsvcs/Sched/Reconfig_Scheduler_T.cpp:
* orbsvcs/orbsvcs/Sched/SchedEntry.cpp:
* orbsvcs/orbsvcs/Sched/Scheduler.cpp:
* orbsvcs/orbsvcs/Sched/Strategy_Scheduler.cpp:
* orbsvcs/orbsvcs/Scheduler_Factory.cpp:
* orbsvcs/orbsvcs/Security.mpc:
* orbsvcs/orbsvcs/Security/SL2_SecurityManager.cpp:
* orbsvcs/orbsvcs/Security/Security_ORBInitializer.cpp:
* orbsvcs/orbsvcs/Shutdown_Utilities.cpp:
* orbsvcs/orbsvcs/Time/TAO_Time_Service_Clerk.cpp:
* orbsvcs/orbsvcs/Time/TAO_Time_Service_Server.cpp:
* orbsvcs/orbsvcs/Time/Timer_Helper.cpp:
* orbsvcs/orbsvcs/Trader/Trading_Loader.cpp:
Use new logging macros for orbsvcs.
Fri Apr 12 20:58:38 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* MPC/config/iortable.mpb:
Add new base projects to satisfy static builds.
Fri Apr 12 18:16:42 UTC 2013 Adam Mitz <mitza@ociweb.com>
* orbsvcs/ImplRepo_Service/ImplRepo_Service.mpc:
Added required base projects for valuetype and messaging.
Fri Apr 12 17:58:35 UTC 2013 Huang-Ming Huang <huangh@ociweb.com>
* tao/LF_Strategy_Complete.cpp:
* tao/TAO_Singleton.cpp:
Fix undeclared TAOLIB_DEBUG problem.
Fri Apr 12 17:27:29 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/ImplRepo_Service/Adapter_Activator.h:
* orbsvcs/ImplRepo_Service/Forwarder.h:
Fix for versioned namespace builds.
* utils/logWalker/Invocation.cpp:
clean up some scoreboard warnings.
Fri Apr 12 12:11:11 UTC 2013 Martin Corino <mcorino@remedy.nl>
* tests/Bug_3384_Regression/Client_i.h:
* tests/Bug_3384_Regression/Client_i.cpp:
* tests/Bug_3384_Regression/Server_i.h:
* tests/Bug_3384_Regression/Server_i.cpp:
More fixes for fuzzy fuzzer.
Fri Apr 12 09:47:06 UTC 2013 Martin Corino <mcorino@remedy.nl>
* tests/Bug_3384_Regression/Client_i.h:
* tests/Bug_3384_Regression/Client_i.cpp:
* tests/Bug_3384_Regression/README.txt:
* tests/Bug_3384_Regression/Server_i.h:
* tests/Bug_3384_Regression/Server_i.cpp:
Fuzz fixes.
Thu Apr 11 19:52:53 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* NEWS:
Documented new ImR.
Thu Apr 11 19:47:49 UTC 2013 Huang-Ming Huang <huangh@ociweb.com>
* tao/debug.h:
Fixed TAOLIB_ERROR_RETURN() control reaches end of non-void function warning.
Thu Apr 11 18:03:24 UTC 2013 Huang-Ming Huang <huangh@ociweb.com>
* tao/Acceptor_Impl.cpp:
* tao/Acceptor_Registry.cpp:
* tao/AnyTypeCode/Any_Unknown_IDL_Type.cpp:
* tao/AnyTypeCode/NVList.cpp:
* tao/AnyTypeCode/append.cpp:
* tao/AnyTypeCode/skip.cpp:
* tao/Any_Insert_Policy_T.h:
* tao/Asynch_Queued_Message.cpp:
* tao/BiDir_GIOP/BiDir_ORBInitializer.cpp:
* tao/CORBALOC_Parser.cpp:
* tao/CORBANAME_Parser.cpp:
* tao/CSD_Framework/CSD_Default_Servant_Dispatcher.cpp:
* tao/CSD_Framework/CSD_FW_Server_Request_Wrapper.cpp:
* tao/CSD_Framework/CSD_ORBInitializer.cpp:
* tao/CSD_Framework/CSD_Strategy_Base.inl:
* tao/CSD_Framework/CSD_Strategy_Base.cpp:
* tao/CSD_Framework/CSD_Strategy_Proxy.cpp:
* tao/CSD_Framework/CSD_Strategy_Repository.cpp:
* tao/CSD_ThreadPool/CSD_TP_Strategy_Factory.cpp:
* tao/CSD_ThreadPool/CSD_TP_Task.cpp:
* tao/Cache_Entries_T.cpp:
* tao/Codeset/Codeset_Descriptor.cpp:
* tao/Codeset/Codeset_Manager_i.cpp:
* tao/Codeset/Codeset_Translator_Factory_T.cpp:
* tao/Codeset/UTF16_BOM_Factory.cpp:
* tao/Codeset/UTF16_BOM_Translator.cpp:
* tao/Codeset/UTF8_Latin1_Factory.cpp:
* tao/Compression/zlib/ZlibCompressor_Factory.cpp:
* tao/Condition.cpp:
* tao/Connection_Handler.cpp:
* tao/Connector_Registry.cpp:
* tao/DiffServPolicy/DiffServPolicy_ORBInitializer.cpp:
* tao/DynamicAny/DynValue_i.cpp:
* tao/DynamicInterface/DII_Invocation.cpp:
* tao/DynamicInterface/DII_Reply_Dispatcher.cpp:
* tao/DynamicInterface/DII_Reply_Handler.cpp:
* tao/DynamicInterface/Request.cpp:
* tao/Dynamic_TP/DTP_Config.cpp:
* tao/Dynamic_TP/DTP_ORBInitializer.cpp:
* tao/Dynamic_TP/DTP_ORB_Loader.cpp:
* tao/Dynamic_TP/DTP_POA_Loader.cpp:
* tao/Dynamic_TP/DTP_POA_Strategy.cpp:
* tao/Dynamic_TP/DTP_Task.cpp:
* tao/Dynamic_TP/DTP_Thread_Pool.cpp:
* tao/EndpointPolicy/Endpoint_Acceptor_Filter.cpp:
* tao/Environment.cpp:
* tao/Exception.cpp:
* tao/Exclusive_TMS.cpp:
* tao/FlResource/FlResource_Factory.cpp:
* tao/FoxResource/FoxResource_Factory.cpp:
* tao/GIOP_Message_Base.cpp:
* tao/GIOP_Message_Generator_Parser.cpp:
* tao/GIOP_Message_Generator_Parser_10.cpp:
* tao/GIOP_Message_Generator_Parser_12.cpp:
* tao/GIOP_Message_State.cpp:
* tao/HTTP_Client.cpp:
* tao/HTTP_Handler.cpp:
* tao/HTTP_Parser.cpp:
* tao/IIOP_Acceptor.cpp:
* tao/IIOP_Connection_Handler.cpp:
* tao/IIOP_Connector.cpp:
* tao/IIOP_Endpoint.cpp:
* tao/IIOP_Profile.cpp:
* tao/IIOP_Transport.cpp:
* tao/IORInterceptor/IORInterceptor_Adapter_Impl.cpp:
* tao/ImR_Client/ImR_Client.cpp:
* tao/Invocation_Adapter.cpp:
* tao/LF_CH_Event.cpp:
* tao/LF_Strategy_Complete.cpp:
* tao/Leader_Follower.cpp:
* tao/Load_Protocol_Factory_T.h:
* tao/LocalObject.cpp:
* tao/MCAST_Parser.cpp:
* tao/MProfile.cpp:
* tao/Messaging/AMH_Response_Handler.cpp:
* tao/Messaging/Asynch_Invocation_Adapter.cpp:
* tao/Messaging/Asynch_Reply_Dispatcher.cpp:
* tao/Messaging/Asynch_Timeout_Handler.cpp:
* tao/Messaging/Connection_Timeout_Policy_i.cpp:
* tao/Messaging/Messaging_ORBInitializer.cpp:
* tao/Messaging/Messaging_Policy_i.cpp:
* tao/Messaging/Messaging_Queueing_Strategies.cpp:
* tao/Muxed_TMS.cpp:
* tao/ORB.cpp:
* tao/ORBInitializer_Registry.cpp:
* tao/ORB_Core.cpp:
* tao/Object.cpp:
* tao/Object_Ref_Table.cpp:
* tao/On_Demand_Fragmentation_Strategy.cpp:
* tao/PI/ClientRequestInfo.cpp:
* tao/PI/DLL_Resident_ORB_Initializer.cpp:
* tao/PI/Interceptor_List_T.cpp:
* tao/PI/ORBInitializer_Registry_Impl.cpp:
* tao/PI/PICurrent_Impl.cpp:
* tao/Parser_Registry.cpp:
* tao/Policy_Validator.cpp:
* tao/PortableServer/Active_Object_Map.cpp:
* tao/PortableServer/IdAssignmentStrategyFactoryImpl.cpp:
* tao/PortableServer/IdUniquenessStrategyFactoryImpl.cpp:
* tao/PortableServer/IdUniquenessStrategyUniqueFactoryImpl.cpp:
* tao/PortableServer/ImplicitActivationStrategyFactoryImpl.cpp:
* tao/PortableServer/LifespanStrategyFactoryImpl.cpp:
* tao/PortableServer/LifespanStrategyPersistent.cpp:
* tao/PortableServer/LifespanStrategyPersistentFactoryImpl.cpp:
* tao/PortableServer/LifespanStrategyTransientFactoryImpl.cpp:
* tao/PortableServer/Object_Adapter.cpp:
* tao/PortableServer/Operation_Table_Binary_Search.cpp:
* tao/PortableServer/Operation_Table_Dynamic_Hash.cpp:
* tao/PortableServer/Operation_Table_Linear_Search.cpp:
* tao/PortableServer/Operation_Table_Perfect_Hash.cpp:
* tao/PortableServer/POA_Policy_Set.cpp:
* tao/PortableServer/RequestProcessingStrategyAOMOnlyFactoryImpl.cpp:
* tao/PortableServer/RequestProcessingStrategyDefaultServantFI.cpp:
* tao/PortableServer/RequestProcessingStrategyFactoryImpl.cpp:
* tao/PortableServer/RequestProcessingStrategyServantActivatorFI.cpp:
* tao/PortableServer/RequestProcessingStrategyServantLocatorFI.cpp:
* tao/PortableServer/ServantRetentionStrategyFactoryImpl.cpp:
* tao/PortableServer/ServantRetentionStrategyNonRetainFactoryImpl.cpp:
* tao/PortableServer/ServantRetentionStrategyRetain.cpp:
* tao/PortableServer/ServantRetentionStrategyRetainFactoryImpl.cpp:
* tao/PortableServer/ThreadStrategyFactoryImpl.cpp:
* tao/PortableServer/ThreadStrategySingleFactoryImpl.cpp:
* tao/Profile.cpp:
* tao/QtResource/QtResource_Factory.cpp:
* tao/Queued_Data.cpp:
* tao/RTCORBA/Linear_Network_Priority_Mapping.cpp:
* tao/RTCORBA/Linear_Priority_Mapping.cpp:
* tao/RTCORBA/Multi_Priority_Mapping.cpp:
* tao/RTCORBA/RT_Current.cpp:
* tao/RTCORBA/RT_Invocation_Endpoint_Selectors.cpp:
* tao/RTCORBA/RT_ORBInitializer.cpp:
* tao/RTCORBA/RT_ORB_Loader.cpp:
* tao/RTCORBA/RT_Protocols_Hooks.cpp:
* tao/RTCORBA/RT_Service_Context_Handler.cpp:
* tao/RTCORBA/Thread_Pool.cpp:
* tao/RTPortableServer/RT_Servant_Dispatcher.cpp:
* tao/RTScheduling/Current.cpp:
* tao/RTScheduling/RTScheduler_Initializer.cpp:
* tao/RTScheduling/RTScheduler_Loader.cpp:
* tao/RTScheduling/Request_Interceptor.cpp:
* tao/Reactive_Connect_Strategy.cpp:
* tao/Remote_Invocation.cpp:
* tao/Resume_Handle.cpp:
* tao/Storable_File_Guard.cpp:
* tao/Storable_FlatFileStream.cpp:
* tao/Strategies/COIOP_Acceptor.cpp:
* tao/Strategies/COIOP_Connection_Handler.cpp:
* tao/Strategies/COIOP_Profile.cpp:
* tao/Strategies/DIOP_Acceptor.cpp:
* tao/Strategies/DIOP_Connection_Handler.cpp:
* tao/Strategies/DIOP_Connector.cpp:
* tao/Strategies/DIOP_Endpoint.cpp:
* tao/Strategies/DIOP_Profile.cpp:
* tao/Strategies/DIOP_Transport.cpp:
* tao/Strategies/Optimized_Connection_Endpoint_Selector.cpp:
* tao/Strategies/SCIOP_Acceptor.cpp:
* tao/Strategies/SCIOP_Connection_Handler.cpp:
* tao/Strategies/SCIOP_Connector.cpp:
* tao/Strategies/SCIOP_Endpoint.cpp:
* tao/Strategies/SCIOP_Profile.cpp:
* tao/Strategies/SCIOP_Transport.cpp:
* tao/Strategies/SHMIOP_Acceptor.cpp:
* tao/Strategies/SHMIOP_Connection_Handler.cpp:
* tao/Strategies/SHMIOP_Connector.cpp:
* tao/Strategies/SHMIOP_Endpoint.cpp:
* tao/Strategies/SHMIOP_Profile.cpp:
* tao/Strategies/SHMIOP_Transport.cpp:
* tao/Strategies/Strategies_ORBInitializer.cpp:
* tao/Strategies/UIOP_Acceptor.cpp:
* tao/Strategies/UIOP_Connection_Handler.cpp:
* tao/Strategies/UIOP_Connector.cpp:
* tao/Strategies/UIOP_Profile.cpp:
* tao/Strategies/UIOP_Transport.cpp:
* tao/Strategies/advanced_resource.cpp:
* tao/Stub.inl:
* tao/Stub.cpp:
* tao/Synch_Invocation.cpp:
* tao/Synch_Reply_Dispatcher.cpp:
* tao/SystemException.cpp:
* tao/TAO_Internal.cpp:
* tao/TAO_Server_Request.cpp: