forked from OpenDDS/OpenDDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-3.12
4515 lines (3022 loc) · 157 KB
/
ChangeLog-3.12
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
Thu Aug 31 20:17:33 UTC 2017 Adam Mitz <[email protected]>
commit b53174158f756a0d44dfbf5d6dc073590cbfc30c
Merge pull request #733 from jrw972/master
Tidy up Dockerfile and simplify entry command
Thu Aug 31 20:17:24 UTC 2017 Adam Mitz <[email protected]>
commit 8a0ecf0ccc93b75b0028264037a6d85bdab609c6
Merge pull request #732 from jwillemsen/jwi-zapid
Zap some left over Ids
Thu Aug 31 20:17:14 UTC 2017 Adam Mitz <[email protected]>
commit de1e33d396f5bec6643f2280bba9ae02f49507f8
Merge pull request #730 from huangminghuang/master
Fix script quote problem
Thu Aug 31 20:16:52 UTC 2017 Adam Mitz <[email protected]>
commit cf4e61f75e4a4ba01357d9de877179b3f4b22e5f
* NEWS.md:
* README.md:
Documentation updates for upcoming release
Thu Aug 31 14:52:35 UTC 2017 Justin R. Wilson <[email protected]>
commit 5f5d8a4e0e45012946ce6b9ecf56a80740198f1b
* Dockerfile:
* README.md:
Tidy up Dockerfile and simplify entry command
Thu Aug 31 12:59:37 UTC 2017 Johnny Willemsen <[email protected]>
commit eca3b6c4b9b63fa320b636d0c5e4549f782788fc
* tests/DCPS/LivelinessKeepAliveTest/LivelinessKeepAliveTest_export.h:
* tests/DCPS/StringKey/pub_multicast.ini:
* tests/DCPS/StringKey/sub_multicast.ini:
Zap some left over Ids
*
tests/DCPS/LivelinessKeepAliveTest/LivelinessKeepAliveTest_export.h:
* tests/DCPS/StringKey/pub_multicast.ini:
* tests/DCPS/StringKey/sub_multicast.ini:
Thu Aug 31 03:39:13 UTC 2017 Adam Mitz <[email protected]>
commit 098e20c0f8a619a6a8c153b67305d737b16f5930
Merge pull request #731 from mitza-oci/master
When factories are enabled, if they have autoenable turned on
then they should enable child objects
Thu Aug 31 00:29:15 UTC 2017 Adam Mitz <[email protected]>
commit 246dea6b765a246c7c5b97ae77afb79a7b0369ab
* tests/DCPS/DPFactoryQos/publisher.cpp:
* tests/DCPS/DPFactoryQos/subscriber.cpp:
DPFactoryQos: updated this test to reflect what DDS spec says
should happen with autoenable_created_entities
Wed Aug 30 21:26:42 UTC 2017 Adam Mitz <[email protected]>
commit 1f4b44645a4cbce33f6fdbc6ccffc38bd5d22822
* dds/DCPS/Discovery.cpp:
* dds/DCPS/DiscoveryBase.h:
* dds/DCPS/DomainParticipantImpl.cpp:
* dds/DCPS/InfoRepoDiscovery/InfoRepoDiscovery.cpp:
* dds/DCPS/PublisherImpl.cpp:
* dds/DCPS/PublisherImpl.h:
* dds/DCPS/SubscriberImpl.cpp:
* dds/DCPS/SubscriberImpl.h:
When factories are enabled, if they have autoenable turned on
then they should enable child objects
Allow BIT setup to work correctly when the DomainParticipant has
autoenable disabled
Wed Aug 30 19:27:17 UTC 2017 Huang-Ming Huang <[email protected]>
commit 2cd41e1f7f3c0194139a311ccad6d014a7490a4e
* performance-tests/Bench/tests/latency/run_all_tests.sh:
Fix script quote problem
Wed Aug 30 18:56:22 UTC 2017 Justin R. Wilson <[email protected]>
commit bbac6eec0caacd85b7bba8eede219d0c587fa41a
* README.md:
Fix typo in README
Tue Aug 29 17:58:59 UTC 2017 Justin R. Wilson <[email protected]>
commit 8dee14d0abba1bff2f5215ae995a8d9effaf6932
* README.md:
Add message describing non-errors when entering a container
The user should not be concerned about messages concerning an
inability to map user, group, and host names.
Wed Aug 30 14:52:18 UTC 2017 Adam Mitz <[email protected]>
commit a52704c8ab7d0fd1e642e4a6399143e425890aab
Merge pull request #727 from huangminghuang/memory-leak-fixes
Revert UpdateDataTypes.h
Wed Aug 30 13:19:28 UTC 2017 Huang-Ming Huang <[email protected]>
commit 2e512145ba8ea108d45361cad457ed560155c7e9
* dds/InfoRepo/UpdateDataTypes.h:
Revert UpdateDataTypes.h
Tue Aug 29 21:56:22 UTC 2017 Adam Mitz <[email protected]>
commit de84a9a4e5d319373e08790d1d2fee008f6b3aad
Merge pull request #726 from huangminghuang/memory-leak-fixes
Fourth batch of memory leak fixes
Tue Aug 29 21:03:22 UTC 2017 Adam Mitz <[email protected]>
commit c552e8e504d7e84bccd9b6c1c53aee127998fd09
Merge pull request #725 from jrw972/master
Docker image
Tue Aug 29 20:33:43 UTC 2017 Adam Mitz <[email protected]>
commit ec746e61291d1ff1c215c3d4e73bbf4034568677
* DevGuideExamples/DCPS/Messenger/docker-compose-inforepo.yml:
* DevGuideExamples/DCPS/Messenger/docker-compose.yml:
* README.md:
Updated to refer to new docker image
Tue Aug 29 19:20:16 UTC 2017 Huang-Ming Huang <[email protected]>
commit 6ba65c708d73ffbc080a8483dda939927bb920b1
* dds/DCPS/WeakRcHandle.h:
Fix typo
Tue Aug 29 16:25:22 UTC 2017 Huang-Ming Huang <[email protected]>
commit 2b15aeebaa6b7dc780ff502ee29a556d6291c58b
* tools/modeling/codegen/model/Service_T.cpp:
Another memory leak fix in Service_T.cpp
Fri Aug 25 15:24:43 UTC 2017 Huang-Ming Huang <[email protected]>
commit e38ec6869f282226f9b9de62fad4989eaab38cfd
* dds/DCPS/ConditionImpl.cpp:
* dds/DCPS/ConditionImpl.h:
* dds/DCPS/WaitSet.h:
* dds/DCPS/WeakRcHandle.h:
Added WeakRcHandle to break reference cycles
Tue Aug 29 15:11:44 UTC 2017 Huang-Ming Huang <[email protected]>
commit 215000528ec2c9d419ed0842f0e698684d2b9121
* tools/modeling/codegen/model/Service_T.h:
Fix memory leak in modeling
Tue Aug 29 15:26:49 UTC 2017 Justin R. Wilson <[email protected]>
commit 8df556a00dcc5afa63ec7f39a29187ec4fe2f02a
* DevGuideExamples/DCPS/Messenger/docker-compose-inforepo.yml:
* DevGuideExamples/DCPS/Messenger/docker-compose.yml:
Update compose files to use the correct image
Mon Aug 28 21:33:55 UTC 2017 Adam Mitz <[email protected]>
commit 6de3db443af7ed23dc23e2e9b4c9e5a5f625fb0a
Merge pull request #724 from huangminghuang/suncc_workaround
unique_ptr workaround for suncc
Mon Aug 28 21:33:48 UTC 2017 Adam Mitz <[email protected]>
commit 50397ba56c1c41b65351fd1fd793cff5465582a9
Merge pull request #723 from oschwaldp-oci/coverity_issues_fixes
Coverity Scan updates
Mon Aug 28 18:37:26 UTC 2017 Peter Oschwald <[email protected]>
commit 2c049717195635d0edc0739de9ba21e183893def
* tests/DCPS/TcpReconnect/publisher.cpp:
Coverity Scan Defect: Address 1380592
Check stub_ready_filename to make sure it has been set before
passing it to fopen.
Mon Aug 28 14:21:38 UTC 2017 Justin R. Wilson <[email protected]>
commit 2d759ff8a7488284a337202c2dd58dca492255de
* .dockerignore:
* DevGuideExamples/DCPS/Messenger/docker-compose-inforepo.yml:
* DevGuideExamples/DCPS/Messenger/docker-compose.yml:
* DevGuideExamples/DCPS/Messenger/wait-for-it.sh:
* Dockerfile:
* README.md:
Add OpenDDS Docker image
Sat Aug 26 12:58:39 UTC 2017 Huang-Ming Huang <[email protected]>
commit 4222eabba268d8f072a083407858ef164dba8803
* tests/DCPS/Federation/Publisher.cpp:
* tests/DCPS/Federation/Subscriber.cpp:
Fix some memory leaks in tests/DCPS/Federation
Mon Aug 28 15:42:56 UTC 2017 Huang-Ming Huang <[email protected]>
commit c5d06d7da5fce2c46feccc83e7a13631689a8f36
* dds/DCPS/unique_ptr.h:
unqiue_ptr workaround for suncc
Mon Aug 28 15:29:10 UTC 2017 Peter Oschwald <[email protected]>
commit 5c181fc8fbe9ab4682499bffbca8bbf8a7e9ac43
* dds/FACE/FaceTSS.cpp:
Coverity Scan updates: Address 1454919 and 1454912 having to do
with further exceptions not being caught from the bind_config
call.
Fri Aug 25 20:42:34 UTC 2017 Huang-Ming Huang <[email protected]>
commit 5c27a12731200769d26ee90129dfd8a1698f9780
* tests/DCPS/ManualAssertLiveliness/DataReaderListener.cpp:
Fix memory leak for tests/DCPS/ManualAssertLiveliness
Fri Aug 25 19:24:30 UTC 2017 Huang-Ming Huang <[email protected]>
commit 12e72a9b474db8a65885154aababbbc95da467b4
* tests/DCPS/TestFramework/TestFramework_T.cpp:
* tests/DCPS/TestFramework/TestFramework_T.h:
Fix memory leak in TestFramework
Fri Aug 25 16:21:15 UTC 2017 Huang-Ming Huang <[email protected]>
commit 65e0b36fa154df72d035dfff50de0151eafd121e
* dds/InfoRepo/UpdateDataTypes.h:
* dds/InfoRepo/UpdateManager.cpp:
fix memory leak in InfoRepo/UpdateManager
Sun Aug 27 15:49:10 UTC 2017 Adam Mitz <[email protected]>
commit 7a3079c98c9a1d725e080f3b2ef069cdcea4b1db
Merge pull request #722 from mitza-oci/master
unique_ptr: pre-C++11 needs <algorithm> header
Fri Aug 25 22:44:20 UTC 2017 Adam Mitz <[email protected]>
commit cb79f07e6fcdc455e483c29a4a9bd22a1e8d820b
* dds/DCPS/unique_ptr.h:
fixed whitespace
Fri Aug 25 22:17:38 UTC 2017 Adam Mitz <[email protected]>
commit 42f13902aa7d27b8f702ec4ad27fcd90fbb5a13c
* dds/DCPS/unique_ptr.h:
unique_ptr: pre-C++11 needs <algorithm> header
formatting
Fri Aug 25 19:09:55 UTC 2017 Adam Mitz <[email protected]>
commit 246710d1240ca5073fadb8c2bf6827c031fddbb1
Merge pull request #720 from oschwaldp-oci/coverity_issues_fixes
Coverity Issues.
Fri Aug 25 19:09:28 UTC 2017 Adam Mitz <[email protected]>
commit 67b261fbc0ac7d604b6cb685a8f7a501cf0b59a4
Merge pull request #719 from huangminghuang/master
Third batch of memory leak fixes
Fri Aug 25 19:05:38 UTC 2017 Adam Mitz <[email protected]>
commit aac49d33d3f82e39e368fb6e8f9644a0604e166e
* dds/DCPS/DataWriterImpl.cpp:
fixed warnings
Fri Aug 25 15:37:49 UTC 2017 Huang-Ming Huang <[email protected]>
commit 37ab6949f0a5b40d32bbc3bd0ac8b90c40407f9b
* dds/DCPS/transport/framework/TransportSendControlElement.cpp:
* dds/DCPS/transport/framework/TransportSendControlElement.h:
* dds/DCPS/transport/framework/TransportSendControlElement.inl:
Restore constness
Fri Aug 25 15:37:09 UTC 2017 Huang-Ming Huang <[email protected]>
commit d02b4696a46a640e74c83ed7aacdf737d7fe8010
* dds/DCPS/unique_ptr.h:
syntax cleanup
Fri Aug 25 15:14:05 UTC 2017 Adam Mitz <[email protected]>
commit 6e04c6d48cc9c86dc7311f6ab929591e78758952
* dds/DCPS/RawDataSample.cpp:
* dds/DCPS/transport/framework/ReceivedDataSample.inl:
* dds/DCPS/unique_ptr.h:
Use swap() in class's namespace, not std
Thu Aug 24 22:01:24 UTC 2017 Peter Oschwald <[email protected]>
commit ee065392b57cbafc14f825b3b093693820609bd7
* dds/FACE/FaceTSS.h:
Initialize last_msg_header to default.
Addressing coverity defect 1380662
Thu Aug 24 20:37:24 UTC 2017 Peter Oschwald <[email protected]>
commit ed19a382fcbbc6aab51b35786ab257dcba6102f7
* dds/FACE/FaceTSS.cpp:
Catch exception thrown in bind_config.
Addresses Coverity Defects: 1446126 & 1446125.
Thu Aug 24 16:28:42 UTC 2017 Huang-Ming Huang <[email protected]>
commit e83305b312c8444a4eddb1f3deb113f1451c2bdd
* dds/DCPS/transport/rtps_udp/RtpsSampleHeader.cpp:
Change some function declarations using unique_ptr
Thu Aug 24 16:31:03 UTC 2017 Huang-Ming Huang <[email protected]>
commit 6dad858b9d9b3d270602169e23f534b37fad7101
Merge remote-tracking branch 'upstream/master'
Thu Aug 24 16:28:42 UTC 2017 Huang-Ming Huang <[email protected]>
commit 5f985b22f33572f999213c11712a163669599d50
* dds/DCPS/DataDurabilityCache.cpp:
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/DataWriterImpl.h:
* dds/DCPS/DataWriterImpl_T.h:
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Sedp.h:
* dds/DCPS/transport/framework/TransportSendControlElement.cpp:
Change some function declarations using unique_ptr
Thu Aug 24 13:08:26 UTC 2017 Huang-Ming Huang <[email protected]>
commit e283cdf635fad112f5a1f8ac715f89d1f760f474
* dds/DCPS/transport/framework/TransportControlElement.h:
* tests/DCPS/WriteDataContainer/WriteDataContainerTest.cpp:
Fix ambiguous call for clang
Thu Aug 24 13:05:06 UTC 2017 Huang-Ming Huang <[email protected]>
commit afb697410174531df1875c1e2c52648075fdfb1c
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/transport/framework/SendResponseListener.cpp:
Fix warning messages
Thu Aug 24 02:04:51 UTC 2017 Huang-Ming Huang <[email protected]>
commit 46e2f45e1813a09e66f2d2a263d59d5ec484d1f0
* tests/DCPS/DCPSInfoRepo/pubsub.cpp:
Fix tests/DCPS/DCPSInfoRepo memory leak
Wed Aug 23 21:47:05 UTC 2017 Huang-Ming Huang <[email protected]>
commit 9f2fb60b37ff1987695db7687a99f5a8aa00ad7f
* tests/DCPS/WriteDataContainer/WriteDataContainerTest.cpp:
Fix WriteDataConainerTest memory leak
Wed Aug 23 20:52:03 UTC 2017 Huang-Ming Huang <[email protected]>
commit 37cf0537358032e83a1e9e5625b2693aa3ff6729
* tests/DCPS/Deadline/subscriber.cpp:
Fix tests/DCPS/Deadline memory leak
Wed Aug 23 20:50:45 UTC 2017 Huang-Ming Huang <[email protected]>
commit 673631c2013b15d9683da3fe8aeae8c708129e78
* dds/DCPS/unique_ptr.h:
Fix unique_ptr errors
Wed Aug 23 15:04:19 UTC 2017 Huang-Ming Huang <[email protected]>
commit e394300cff2b0a78f635939bb7a7c8c080f10c46
* tests/FACE/Compiler/idl_test1_main/main.cpp:
Fix FACE/Compiler/idl_test1_main memory leak
Wed Aug 23 14:55:14 UTC 2017 Huang-Ming Huang <[email protected]>
commit 6c5d2c33b3e47d62aa5078d92fbaca6763b1ff17
* dds/DCPS/transport/framework/TransportControlElement.cpp:
* dds/DCPS/transport/framework/TransportControlElement.h:
* dds/DCPS/transport/framework/TransportReplacedElement.cpp:
* dds/DCPS/transport/framework/TransportRetainedElement.cpp:
* dds/DCPS/transport/framework/TransportSendControlElement.cpp:
* dds/DCPS/transport/framework/TransportSendElement.cpp:
Fix leaks in TransportQueuedElement derived classes
Thu Aug 17 17:59:42 UTC 2017 Huang-Ming Huang <[email protected]>
commit 7b5a1108bd5334e2153765591493d11c63bd3ad1
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DataWriterImpl.cpp:
* tests/DCPS/SetQosDeadline/subscriber.cpp:
Fix circular reference problem when deadline is enabled
Mon Aug 21 14:38:22 UTC 2017 Huang-Ming Huang <[email protected]>
commit 707c19a5137e1e023e041f92001043cbc398b0f9
* tests/DCPS/SetQosPartition/publisher.cpp:
* tests/DCPS/SetQosPartition/subscriber.cpp:
Fix memory leak in tests/DCPS/SetQosPartition
Wed Aug 23 12:37:49 UTC 2017 Huang-Ming Huang <[email protected]>
commit 1a9e6d490def1ae2c857a4468961886d2527b30a
* dds/DCPS/DataDurabilityCache.cpp:
* dds/DCPS/DataDurabilityCache.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DataReaderImpl_T.h:
* dds/DCPS/DataSampleElement.cpp:
* dds/DCPS/DataSampleElement.h:
* dds/DCPS/DataSampleElement.inl:
* dds/DCPS/DataSampleHeader.cpp:
* dds/DCPS/DataSampleHeader.h:
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/DataWriterImpl.h:
* dds/DCPS/DataWriterImpl_T.h:
* dds/DCPS/FilterEvaluator.cpp:
* dds/DCPS/Message_Block_Ptr.h:
* dds/DCPS/MultiTopicDataReaderBase.h:
* dds/DCPS/PublicationInstance.h:
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Sedp.h:
* dds/DCPS/RawDataSample.cpp:
* dds/DCPS/RawDataSample.h:
* dds/DCPS/RecorderImpl.cpp:
* dds/DCPS/ReplayerImpl.cpp:
* dds/DCPS/ReplayerImpl.h:
* dds/DCPS/Service_Participant.h:
* dds/DCPS/WriteDataContainer.cpp:
* dds/DCPS/WriteDataContainer.h:
* dds/DCPS/scoped_ptr.h:
* dds/DCPS/transport/framework/DataLink.cpp:
* dds/DCPS/transport/framework/DataLink.h:
* dds/DCPS/transport/framework/DataLinkSet.h:
* dds/DCPS/transport/framework/DataLinkSet.inl:
* dds/DCPS/transport/framework/ReceivedDataSample.h:
* dds/DCPS/transport/framework/ReceivedDataSample.inl:
* dds/DCPS/transport/framework/SendResponseListener.cpp:
* dds/DCPS/transport/framework/SendResponseListener.h:
* dds/DCPS/transport/framework/TransportClient.cpp:
* dds/DCPS/transport/framework/TransportClient.h:
* dds/DCPS/transport/framework/TransportControlElement.cpp:
* dds/DCPS/transport/framework/TransportControlElement.h:
* dds/DCPS/transport/framework/TransportControlElement.inl:
* dds/DCPS/transport/framework/TransportCustomizedElement.cpp:
* dds/DCPS/transport/framework/TransportCustomizedElement.h:
* dds/DCPS/transport/framework/TransportQueueElement.cpp:
* dds/DCPS/transport/framework/TransportReassembly.cpp:
* dds/DCPS/transport/framework/TransportReplacedElement.cpp:
* dds/DCPS/transport/framework/TransportReplacedElement.h:
* dds/DCPS/transport/framework/TransportReplacedElement.inl:
* dds/DCPS/transport/framework/TransportRetainedElement.cpp:
* dds/DCPS/transport/framework/TransportRetainedElement.h:
* dds/DCPS/transport/framework/TransportRetainedElement.inl:
* dds/DCPS/transport/framework/TransportSendControlElement.cpp:
* dds/DCPS/transport/framework/TransportSendControlElement.h:
* dds/DCPS/transport/framework/TransportSendControlElement.inl:
* dds/DCPS/transport/framework/TransportSendListener.cpp:
* dds/DCPS/transport/framework/TransportSendListener.h:
* dds/DCPS/transport/multicast/MulticastDataLink.cpp:
* dds/DCPS/transport/multicast/MulticastDataLink.h:
* dds/DCPS/transport/multicast/MulticastSession.cpp:
* dds/DCPS/transport/multicast/MulticastSession.h:
* dds/DCPS/transport/multicast/ReliableSession.cpp:
* dds/DCPS/transport/multicast/ReliableSession.h:
* dds/DCPS/transport/rtps_udp/RtpsCustomizedElement.cpp:
* dds/DCPS/transport/rtps_udp/RtpsCustomizedElement.h:
* dds/DCPS/transport/rtps_udp/RtpsCustomizedElement.inl:
* dds/DCPS/transport/rtps_udp/RtpsSampleHeader.cpp:
* dds/DCPS/transport/rtps_udp/RtpsSampleHeader.h:
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.cpp:
* dds/DCPS/transport/tcp/TcpDataLink.cpp:
* dds/DCPS/transport/udp/UdpTransport.cpp:
* dds/DCPS/transport/udp/UdpTransport.h:
* dds/DCPS/unique_ptr.h:
* dds/InfoRepo/PersistenceUpdater.h:
* performance-tests/DCPS/InfoRepo_population/publisher.cpp:
* performance-tests/DCPS/InfoRepo_population/subscriber.cpp:
* tests/DCPS/Deadline/publisher.cpp:
* tests/DCPS/FooTest4/Writer.cpp:
* tests/DCPS/LatencyBudget/publisher.cpp:
* tests/DCPS/Lifespan/publisher.cpp:
* tests/DCPS/PersistentDurability/publisher.cpp:
* tests/DCPS/Rejects/publisher.cpp:
* tests/DCPS/SampleLost/publisher.cpp:
* tests/DCPS/SetQosDeadline/publisher.cpp:
* tests/DCPS/SetQosPartition/publisher.cpp:
* tests/DCPS/TransientDurability/publisher.cpp:
* tests/DCPS/UnitTests/Fragmentation.cpp:
* tests/DCPS/UnitTests/RtpsFragmentation.cpp:
* tests/DCPS/UnitTests/ut_Reassembly.cpp:
* tests/DCPS/WriteDataContainer/WriteDataContainerTest.cpp:
* tests/transport/rtps/publisher.cpp:
* tests/transport/rtps/subscriber.cpp:
* tests/transport/rtps_reliability/rtps_reliability.cpp:
* tests/transport/simple/SimpleDataWriter.cpp:
Rename scope_ptr to unique_ptr
Mon Aug 21 16:37:45 UTC 2017 Huang-Ming Huang <[email protected]>
commit 215f57fc521ee2f8f47d059e99abb7d183610fd1
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Sedp.h:
Fix memory leaks in Sedp
Mon Aug 21 22:25:56 UTC 2017 Adam Mitz <[email protected]>
commit 3850a29e0932bf9984895c6aad357eb71ed99f7b
Merge pull request #718 from mitza-oci/master
Attempting to fix GCC7 warnings
Mon Aug 21 20:13:34 UTC 2017 Adam Mitz <[email protected]>
commit b5aa62d3122290c2561b9844829432ce6b4a24d4
* tests/DCPS/FooTest3_0/SubDriver.cpp:
* tests/transport/rtps/publisher.cpp:
* tools/repoctl/repoctl.cpp:
Attempting to fix GCC7 warnings
Wed May 31 16:38:56 UTC 2017 Johnny Willemsen <[email protected]>
commit 0b8bb8a6b9d7d34e5af3bf344b4ea6b67c10d778
* tests/DCPS/FooTest3_0/DataReaderListener.cpp:
* tests/DCPS/FooTest3_0/DataReaderListener.h:
* tests/DCPS/FooTest3_0/SubDriver.cpp:
Simplify test code
* tests/DCPS/FooTest3_0/DataReaderListener.cpp:
* tests/DCPS/FooTest3_0/DataReaderQCListener.cpp:
* tests/DCPS/FooTest3_0/DataReaderQCListener.h:
* tests/DCPS/FooTest3_0/SubDriver.cpp:
* tests/DCPS/FooTest3_0/SubDriver.h:
(cherry picked from commit
f420fe33331328c650c5fa4a1d0062dd45ba6158)
# Conflicts:
# tests/DCPS/FooTest3_0/DataReaderQCListener.cpp
# tests/DCPS/FooTest3_0/DataReaderQCListener.h
# tests/DCPS/FooTest3_0/SubDriver.cpp
# tests/DCPS/FooTest3_0/SubDriver.h
Fri Aug 18 17:45:45 UTC 2017 Adam Mitz <[email protected]>
commit 09f600bdb3112617895bdaeeac3490f80690f8e6
Merge pull request #717 from huangminghuang/master
Added Versioned namespace support for Message_Block_Ptr.h
Fri Aug 18 17:45:39 UTC 2017 Adam Mitz <[email protected]>
commit f50270466810475cbdbd134cd08f3e437f5338be
Merge pull request #716 from jwillemsen/jwi-doublesemicolon
Removed double semi colon
Fri Aug 18 14:29:29 UTC 2017 Huang-Ming Huang <[email protected]>
commit d0ad4f36f6e86dff4769b4d0c6e41e9ba60c40d4
* dds/DCPS/Message_Block_Ptr.h:
Added Versioned namespace support for Message_Block_Ptr.h
Fri Aug 18 13:30:40 UTC 2017 Adam Mitz <[email protected]>
commit c134ad6b74c190beceef44327075bf5ef48f0701
Merge pull request #715 from mitza-oci/master
configure: support Windows-hosted cross compiles.
Fri Jun 30 19:49:06 UTC 2017 Johnny Willemsen <[email protected]>
commit 21020dcbb8b5809c2cb9709af82176a3964d935b
* dds/idl/langmap_generator.cpp:
* tests/DCPS/FooTest3_0/SubDriver.cpp:
* tests/DCPS/Partition/Publisher.cpp:
* tests/DCPS/TestFramework/TestFramework_T.cpp:
* tests/DCPS/TransientLocalMultiInstanceTest/publisher.cpp:
* tools/monitor/MonitorDataStorage.cpp:
Removed double semi colon
* dds/idl/langmap_generator.cpp:
* tests/DCPS/FooTest3_0/SubDriver.cpp:
* tests/DCPS/Partition/Publisher.cpp:
* tests/DCPS/TestFramework/TestFramework_T.cpp:
* tests/DCPS/TransientLocalMultiInstanceTest/publisher.cpp:
* tools/monitor/MonitorDataStorage.cpp:
Thu Aug 17 21:51:51 UTC 2017 Adam Mitz <[email protected]>
commit e8c6433d0a119cf1433ea19b656fd9e34f08dd90
* configure:
configure: fixed whitespace
Thu Aug 17 19:47:06 UTC 2017 Adam Mitz <[email protected]>
commit 9cabbe8217ef7b3779fcaaa67f9b08837cf99f17
* configure:
configure: fixed issues with Windows-hosted cross compile
Thu Aug 17 19:46:35 UTC 2017 Adam Mitz <[email protected]>
commit a81cb555b40103a58c235dac9d6d5ed5273897a1
* configure:
configure: support Visual Studio 2017 version 15.3 (cl 19.11)
Thu Aug 17 19:42:50 UTC 2017 Adam Mitz <[email protected]>
commit 0c5f09b9b5ffa8f2d165e91eb424628386d4b351
* configure:
configure: wrap long lines
Thu Aug 17 19:05:08 UTC 2017 Adam Mitz <[email protected]>
commit 96fec045da0ae78b453991947a163a791895980a
* configure:
configure: support Windows-hosted cross compiles.
Thu Aug 17 18:24:32 UTC 2017 Adam Mitz <[email protected]>
commit d9c9fcb5d133c62e7054db57aa1e8d778a83f5b2
* .travis.yml:
Travis: test with --optimize in one configuration
Thu Aug 17 15:49:27 UTC 2017 Adam Mitz <[email protected]>
commit 15af2e5460c2697afe6c7ee89749494b937e995a
Merge pull request #714 from mitza-oci/master
Updated order of steps for Service_Participant::shutdown()
Thu Aug 17 15:49:19 UTC 2017 Adam Mitz <[email protected]>
commit 862946c30ace7c2a27d250bb31048fc4ec41c249
Merge pull request #713 from huangminghuang/master
Second batch of memory leak fixes
Thu Aug 17 15:49:11 UTC 2017 Adam Mitz <[email protected]>
commit 1368fa63ff279fce14f3805d76abdb7fb0ce11c4
Merge pull request #712 from jwillemsen/jwi-docuboolchanges
Minor code improvements, cherry-picked from 641
Thu Aug 17 15:48:59 UTC 2017 Adam Mitz <[email protected]>
commit 83b89eb68f39ed0435a4747795a38673715f53d4
Merge pull request #708 from jrw972/configure_improvements
Configure improvements
Thu Aug 17 14:06:44 UTC 2017 Justin R. Wilson <[email protected]>
commit 3839ecf547c0db32ea9807fc7419186b4276de7c
* configure:
Cleanup code
Thu Aug 17 13:28:11 UTC 2017 Huang-Ming Huang <[email protected]>
commit 0d985dc6abfafd85fd30d2f3c2d954aff0a98b2a
* dds/FACE/FaceTSS.cpp:
* dds/FACE/FaceTSS.h:
* tests/FACE/Header/Publisher/Publisher.cpp:
Fix memory leaks in FACE
Wed Aug 16 21:32:20 UTC 2017 Adam Mitz <[email protected]>
commit 77ba074846506c4402af3ba301bbe070eda65563
* dds/DCPS/Service_Participant.cpp:
Updated order of steps for Service_Participant::shutdown()
Now reactor_task_ is stopped before discoveryMap_.clear() to
avoid an issue
where TAO_ORB_Core's TSS for that reactor thread is still
allocated at when
the process ends.
Wed Aug 16 20:33:19 UTC 2017 Huang-Ming Huang <[email protected]>
commit a3bb4c23ab4f167e968755bdf797ddd1f18f9421
* dds/FACE/FaceTSS.cpp:
FaceTSS memory leak fix
Wed Aug 16 20:32:46 UTC 2017 Huang-Ming Huang <[email protected]>
commit a2e6282ad8601cfa7b0d6ae59b66810e8ab9d932
* tests/FACE/Compiler/idl_test1_main/main.cpp:
Fix another ACE_Message_Block leak in test
Wed Aug 16 20:18:48 UTC 2017 Huang-Ming Huang <[email protected]>
commit 930916e9ce16b8a387d387c605914220c6c38da0
* dds/DCPS/Message_Block_Ptr.h:
Fix fuzz error
Wed Aug 16 19:45:31 UTC 2017 Justin R. Wilson <[email protected]>
commit ad142e0322201a9f72dafa1dd93420cff98f5f9b
* configure:
Handle safety-profile
Wed Aug 16 18:12:22 UTC 2017 Huang-Ming Huang <[email protected]>
commit a16c85b07df59acf57a8459590697d7633a7f1e0
* dds/DCPS/Serializer.inl:
Fix Serializer memory leak
Wed Aug 16 18:11:04 UTC 2017 Huang-Ming Huang <[email protected]>
commit 55bcc514d63b1a4f1f42c1021e2fd137f4330c29
* dds/InfoRepo/PersistenceUpdater.cpp:
* dds/InfoRepo/PersistenceUpdater.h:
* tests/DCPS/CorbaSeq/publisher.cpp:
* tests/DCPS/CorbaSeq/subscriber.cpp:
* tests/DCPS/Deadline/publisher.cpp:
* tests/DCPS/FooTest3_0/PubDriver.cpp:
* tests/DCPS/LatencyBudget/publisher.cpp:
* tests/DCPS/LatencyBudget/subscriber.cpp:
* tests/DCPS/MultiDPTest/publisher.cpp:
* tests/DCPS/MultiDPTest/subscriber.cpp:
* tests/DCPS/Partition/Publisher.cpp:
* tests/DCPS/Partition/Subscriber.cpp:
* tests/DCPS/Priority/Publisher.cpp:
* tests/DCPS/Priority/Subscriber.cpp:
* tests/DCPS/Rejects/publisher.cpp:
* tests/DCPS/Rejects/subscriber.cpp:
* tests/DCPS/Serializer/SerializerTest.cpp:
* tests/DCPS/Serializer_wstring/publisher.cpp:
* tests/DCPS/Serializer_wstring/subscriber.cpp:
* tests/DCPS/SetQosDeadline/publisher.cpp:
* tests/DCPS/WaitForAck/Publisher.cpp:
* tests/DCPS/WaitForAck/Subscriber.cpp:
* tests/DCPS/sub_init_loop/publisher.cpp:
* tests/DCPS/sub_init_loop/subscriber.cpp:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/xsl/cpp.xsl:
Fix memory leaks in tests
Wed Aug 16 18:01:54 UTC 2017 Huang-Ming Huang <[email protected]>
commit 1e0d1096767318af300ab3c60973c3575db71fb9
* dds/DCPS/Message_Block_Ptr.h:
* dds/DCPS/scoped_ptr.h:
* tests/DCPS/Compiler/idl_test1_main/main.cpp:
* tests/transport/rtps/publisher.cpp:
Added Message_Block_Ptr
Tue Jun 13 14:04:03 UTC 2017 Johnny Willemsen <[email protected]>
commit 71c48865c028f3d5ebb2cde4208d9b1d8862a4ad
* tests/DCPS/SharedTransport/TestCase.cpp:
Put the TestCase construction within the try/catch
* tests/DCPS/SharedTransport/TestCase.cpp:
Tue Jun 13 14:03:27 UTC 2017 Johnny Willemsen <[email protected]>
commit dd409694e99f0a4f0746085f5effb33c23538cf6
* MPC/config/dcps_test.mpb:
* tests/DCPS/SharedTransport/SharedTransport.mpc:
Removed empty comment lines
* MPC/config/dcps_test.mpb:
* tests/DCPS/SharedTransport/SharedTransport.mpc:
Tue Jun 13 07:45:02 UTC 2017 Johnny Willemsen <[email protected]>
commit d058a724730ce5718634cb8195f13adb58b0a691
* dds/DCPS/RTPS/Spdp.cpp:
* dds/DCPS/RTPS/Spdp.h:
Make shutdown_flag_ a bool
* dds/DCPS/RTPS/Spdp.cpp:
* dds/DCPS/RTPS/Spdp.h:
Tue Jun 13 07:41:52 UTC 2017 Johnny Willemsen <[email protected]>
commit 7e66fa949fd2765581f41d49b953efd09c2df0d1
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Sedp.h:
Make shutting_down_ a bool
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Sedp.h:
Tue Jun 06 06:07:27 UTC 2017 Johnny Willemsen <[email protected]>
commit 9f9dd0945ec8ab1b2346e5b32df72df8adcdf26f
* dds/DCPS/transport/framework/TransportClient.h:
Documentation change
* dds/DCPS/transport/framework/TransportClient.h:
Wed Aug 16 15:41:55 UTC 2017 Adam Mitz <[email protected]>
commit 4e6f56f7f418be8addaa4cb40694cfc84e5a9f6a
Merge pull request #710 from huangminghuang/master
Several memory leak fixes
Tue Aug 15 22:22:03 UTC 2017 Justin R. Wilson <[email protected]>
commit 2747a110210a9ef7727b01379f385508676f0290
* .travis.yml:
Remove xerces3 from safety profile build
Tue Aug 15 22:21:49 UTC 2017 Justin R. Wilson <[email protected]>
commit 496fe5f388dec61fb2e465205f10c4bd0fb85c38
* configure:
Handle missing files
Tue Aug 15 22:16:09 UTC 2017 Adam Mitz <[email protected]>
commit f8875453ab9f09f7be7a2c94167d010222ef9da9
Merge pull request #711 from mitza-oci/master
Fixed formatting where ACE_GUARD was on the same line as {
Tue Aug 15 22:16:01 UTC 2017 Adam Mitz <[email protected]>
commit 522c537b8b3e50287eb8f0fd8206a33ecd2c44a6
Merge pull request #707 from jwillemsen/jwi-acetao-644
Use new ACE 6.4.4 and TAO 2.4.4 for DOC group release
Tue Aug 15 20:53:43 UTC 2017 Adam Mitz <[email protected]>
commit 16ef5c5097b62725f227f075f4196cc5ef0e6848
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DataReaderImpl_T.h:
* tools/monitor/MonitorTask.cpp:
Fixed formatting where ACE_GUARD was on the same line as {
Tue Aug 15 20:52:52 UTC 2017 Adam Mitz <[email protected]>
commit 1c68a0370702bac44e5bd505e21613531d072513
* dds/DCPS/QOS_XML_Handler/qos_xml_handler.mpc:
Fixed file in wrong section of .mpc
Tue Aug 15 17:28:02 UTC 2017 Johnny Willemsen <[email protected]>
commit 9c45b1182e9e43be2c1d60b1c136d28e1ccb04c5
* README.md:
Updated TAO DOC group version to use
* README.md:
Tue Aug 15 17:00:07 UTC 2017 Justin R. Wilson <[email protected]>
commit 06e9c051fea148ce024d6fb7570124790aa82b92
* configure:
Check for compatible features and macros
Tue Aug 15 16:18:54 UTC 2017 Huang-Ming Huang <[email protected]>
commit f316d32e9873aab66bb6be9e098dc1b1708103da
* dds/DCPS/DataWriterImpl.cpp:
Fix memory leak when timeout occurs
Tue Aug 15 16:18:16 UTC 2017 Huang-Ming Huang <[email protected]>
commit d57455c6141a9a7b8b68648f19188d2f920c4846
* tests/transport/rtps/publisher.cpp:
* tests/transport/rtps/subscriber.cpp:
* tests/transport/rtps_reliability/rtps_reliability.cpp:
Fix memory leaks in tests/transport/
Mon Aug 14 20:55:21 UTC 2017 Huang-Ming Huang <[email protected]>
commit 3ade63f2a1d93ea73fced9af4cadc33aff141d5f
* tests/transport/simple/pub_main.cpp:
* tests/transport/simple/run_test.pl:
* tests/transport/simple/sub_main.cpp:
Fix memory leak for tests/transport/simple
Mon Aug 14 17:52:51 UTC 2017 Huang-Ming Huang <[email protected]>
commit 9c1a71e50b0a271bff849768fc342aefa8562fed
* dds/DCPS/transport/tcp/TcpConnection.cpp:
* dds/DCPS/transport/tcp/TcpTransport.cpp:
Fix memory leak for TcpConnection
Wed Aug 09 14:51:20 UTC 2017 Huang-Ming Huang <[email protected]>
commit 70f19d130ebfa6f2dba8f69141869c1b7c8791e6
* bin/PerlDDS/Run_Test.pm:
Allow test debug level to be set by environment variables
Mon Aug 14 20:08:06 UTC 2017 Justin R. Wilson <[email protected]>
commit 4f8d654d93c7e10f8f91d26ba9537384a216882c
* configure:
Do not manipulate default.features when using prebuilt ACE/TAO
Mon Aug 14 20:07:35 UTC 2017 Justin R. Wilson <[email protected]>
commit a3c397216d501e4e854db938c72421db86b2073e
* configure:
Translate QT config into target