forked from OpenDDS/OpenDDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-3.11
3212 lines (2116 loc) · 112 KB
/
ChangeLog-3.11
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
Fri May 12 20:32:24 UTC 2017 Adam Mitz <[email protected]>
commit 2d16ae1cfcda62b0b5f258f825bccd2a24791617
* NEWS.md:
* README.md:
* docs/design/RTPS:
Documentation updates for version 3.11
Thu May 11 18:19:21 UTC 2017 Adam Mitz <[email protected]>
commit 02144e02bb6280cc23f5bf4621bd34ec927723d6
Merge pull request #563 from huangminghuang/rtps_udp-lock-fix
Fix missing lock in RtpsUdpDataLink
Thu May 11 17:02:51 UTC 2017 Huang-Ming Huang <[email protected]>
commit bd418296574502befa6c4653a1f4b598b7000c9f
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.cpp:
Fix missing lock in RtpsUdpDataLink
Thu May 11 16:15:42 UTC 2017 Adam Mitz <[email protected]>
commit 462d0fb6304d7855dfd48e0714a53096a3f8a628
Merge pull request #562 from mitza-oci/master
Allow QueryCondition test to use RTPS libs in static builds
Thu May 11 16:15:35 UTC 2017 Adam Mitz <[email protected]>
commit 733af2d58b945bfc0ddbeda36cd4598cf7e38916
Merge pull request #561 from huangminghuang/rtps_udp-deadlock
Fix RtpsUdpDataLink deadlock issue
Thu May 11 14:53:44 UTC 2017 Adam Mitz <[email protected]>
commit 911165a2c80f6cd75a76d1bf3b0d23de92f1f2cf
* tests/DCPS/QueryCondition/QueryCondition.mpc:
* tests/DCPS/QueryCondition/QueryConditionTest.cpp:
Allow QueryCondition test to use RTPS libs in static builds
Thu May 11 13:48:08 UTC 2017 Huang-Ming Huang <[email protected]>
commit e56c5fbcc1525671fac3307a8de7583c0edef181
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.h:
Fix RtpsUdpDataLink deadlock issue
Wed May 10 15:29:52 UTC 2017 Adam Mitz <[email protected]>
commit 1c497d3650a9b0e353545b484a14f82e94e8c915
Merge pull request #560 from mitza-oci/warnings
Fixed compiler warnings
Wed May 10 15:29:39 UTC 2017 Adam Mitz <[email protected]>
commit 15788f43845e7aee5286a4dd3995b0e3747e770c
Merge pull request #559 from
mitza-oci/marked-default-qos-domainparticipant
DomainParticipant Marked_Default_Qos
Wed May 10 15:29:23 UTC 2017 Adam Mitz <[email protected]>
commit 80aa308b19486f98eeaa4c851de54d42a19008b9
Merge pull request #558 from mitza-oci/pr533-safety
Made the change from pr533 compatible with Safety Profile
allocators
Wed May 10 15:29:08 UTC 2017 Adam Mitz <[email protected]>
commit 4c10e410af1db8137f5bf9c8f7c178adb6de9a69
Merge pull request #556 from jwillemsen/jwi-aceerror-541
Use ACE_ERROR together with LM_ERROR, see issue #541
Wed May 10 14:43:44 UTC 2017 Adam Mitz <[email protected]>
commit 307f6b36f3a900f15b414ce10a63be63d6326313
* dds/FACE/FaceTSS.cpp:
Fixed invalid use of PARTICIPANT_QOS_DEFAULT in FaceTSS
Tue May 09 22:09:35 UTC 2017 Adam Mitz <[email protected]>
commit 5b39d53b67557d9659399bd303273a856bb0c693
* dds/DCPS/GuidConverter.cpp:
* dds/DCPS/RawDataSample.cpp:
* tests/DCPS/SharedTransport/TestCase.cpp:
Fixed compiler warnings
Tue May 09 20:33:03 UTC 2017 Adam Mitz <[email protected]>
commit 360c1663406216ac6748dbad0cb620c28c85a0cc
* dds/DCPS/DomainParticipantFactoryImpl.cpp:
* dds/DCPS/Marked_Default_Qos.cpp:
* dds/DCPS/Qos_Helper.inl:
Marked_Default_Qos for DomainParticipant using a value that the
user may not set
Tue May 09 19:45:41 UTC 2017 Adam Mitz <[email protected]>
commit 4e880ac4cd15bbdd7dff1f804d3d1002e307e3ae
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.h:
Made the change from pr533 compatible with Safety Profile
allocators
Tue May 09 19:34:24 UTC 2017 Johnny Willemsen <[email protected]>
commit 172e5f6646cfa5cf32ab49b2419c00e5d27b9ce9
* tests/DCPS/DPFactoryQos/subscriber.cpp:
Explicitly use ERROR in an error message
* tests/DCPS/DPFactoryQos/subscriber.cpp:
Tue May 09 11:45:16 UTC 2017 Johnny Willemsen <[email protected]>
commit dac44f13958731dea513c5eb88d6f1cb6848737a
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/DiscoveryBase.h:
* dds/DCPS/MultiTopicDataReaderBase.cpp:
* dds/DCPS/RTPS/ParameterListConverter.cpp:
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Spdp.cpp:
* dds/DCPS/ReactorInterceptor.cpp:
* dds/DCPS/RecorderImpl.cpp:
* dds/DCPS/ReplayerImpl.cpp:
* dds/DCPS/StaticDiscovery.cpp:
* dds/DCPS/transport/framework/ReceiveListenerSet.cpp:
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpSendStrategy.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpTransport.cpp:
* dds/DCPS/transport/shmem/ShmemTransport.cpp:
* dds/DCPS/transport/tcp/TcpTransport.cpp:
* dds/DCPS/transport/udp/UdpTransport.cpp:
* dds/FACE/config/QosSettings.cpp:
* dds/idl/ts_generator.cpp:
* performance-tests/DCPS/MulticastListenerTest/Writer.cpp:
* performance-tests/DCPS/SimpleE2ETest/Reader.cpp:
* performance-tests/DCPS/SimpleE2ETest/Writer.cpp:
* performance-tests/DCPS/TCPListenerTest/Writer.cpp:
* performance-tests/DCPS/UDPListenerTest/Writer.cpp:
* performance-tests/DCPS/UDPNoKeyTest/Reader.cpp:
* performance-tests/DCPS/UDPNoKeyTest/Writer.cpp:
* tests/DCPS/Compiler/idl_test1_main/main.cpp:
* tests/DCPS/Compiler/idl_test3_main/main.cpp:
* tests/DCPS/FooTest5/DataReaderListener.cpp:
* tests/DCPS/ManyToMany/publisher.cpp:
* tests/DCPS/ManyToMany/subscriber.cpp:
* tests/DCPS/NotifyTest/subscriber.cpp:
* tests/DCPS/Ownership/DataReaderListener.cpp:
* tests/DCPS/Ownership/subscriber.cpp:
* tests/DCPS/Presentation/main.cpp:
* tests/DCPS/RtpsDiscovery/RtpsDiscoveryTest.cpp:
* tests/DCPS/StaticDiscovery/DataReaderListenerImpl.cpp:
* tests/FACE/Compiler/idl_test1_main/main.cpp:
* tests/FACE/Compiler/idl_test3_main/main.cpp:
* tests/FACE/Unit/test_check.h:
* tests/transport/rtps/subscriber.cpp:
* tests/transport/rtps_reliability/rtps_reliability.cpp:
Use ACE_ERROR together with LM_ERROR, see issue #541
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/DiscoveryBase.h:
* dds/DCPS/MultiTopicDataReaderBase.cpp:
* dds/DCPS/RTPS/ParameterListConverter.cpp:
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Spdp.cpp:
* dds/DCPS/ReactorInterceptor.cpp:
* dds/DCPS/RecorderImpl.cpp:
* dds/DCPS/ReplayerImpl.cpp:
* dds/DCPS/StaticDiscovery.cpp:
* dds/DCPS/transport/framework/ReceiveListenerSet.cpp:
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpSendStrategy.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpTransport.cpp:
* dds/DCPS/transport/shmem/ShmemTransport.cpp:
* dds/DCPS/transport/tcp/TcpTransport.cpp:
* dds/DCPS/transport/udp/UdpTransport.cpp:
* dds/FACE/config/QosSettings.cpp:
* dds/idl/ts_generator.cpp:
* performance-tests/DCPS/MulticastListenerTest/Writer.cpp:
* performance-tests/DCPS/SimpleE2ETest/Reader.cpp:
* performance-tests/DCPS/SimpleE2ETest/Writer.cpp:
* performance-tests/DCPS/TCPListenerTest/Writer.cpp:
* performance-tests/DCPS/UDPListenerTest/Writer.cpp:
* performance-tests/DCPS/UDPNoKeyTest/Reader.cpp:
* performance-tests/DCPS/UDPNoKeyTest/Writer.cpp:
* tests/DCPS/Compiler/idl_test1_main/main.cpp:
* tests/DCPS/Compiler/idl_test3_main/main.cpp:
* tests/DCPS/FooTest5/DataReaderListener.cpp:
* tests/DCPS/ManyToMany/publisher.cpp:
* tests/DCPS/ManyToMany/subscriber.cpp:
* tests/DCPS/NotifyTest/subscriber.cpp:
* tests/DCPS/Ownership/DataReaderListener.cpp:
* tests/DCPS/Ownership/subscriber.cpp:
* tests/DCPS/Presentation/main.cpp:
* tests/DCPS/RtpsDiscovery/RtpsDiscoveryTest.cpp:
* tests/DCPS/StaticDiscovery/DataReaderListenerImpl.cpp:
* tests/FACE/Compiler/idl_test1_main/main.cpp:
* tests/FACE/Compiler/idl_test3_main/main.cpp:
* tests/FACE/Unit/test_check.h:
* tests/transport/rtps/subscriber.cpp:
* tests/transport/rtps_reliability/rtps_reliability.cpp:
Mon May 08 06:39:04 UTC 2017 Johnny Willemsen <[email protected]>
commit edfc4628ea1eed949a357e5ecb1ba3f8cd9dd225
* tests/DCPS/WriteDataContainer/WriteDataContainerTest.cpp:
Explicitly get the dpf, not done implicityly anymore by
PARTICIPANT_QOS_DEFAULT
* tests/DCPS/WriteDataContainer/WriteDataContainerTest.cpp:
Sun May 07 18:37:58 UTC 2017 Johnny Willemsen <[email protected]>
commit 508b8336b46afb1c0e75bf57fd4c5c6c6ab484bf
* tests/DCPS/DPFactoryQos/subscriber.cpp:
Extend test to validate that the marked participant qos is not
the same as the qos after we created the dp
* tests/DCPS/DPFactoryQos/subscriber.cpp:
Sat May 06 18:53:22 UTC 2017 Johnny Willemsen <[email protected]>
commit 410bbc9cf7edf3173451debca0179238108ab28b
* dds/DCPS/DomainParticipantFactoryImpl.cpp:
Add missing include and fixed compile errors
* dds/DCPS/DomainParticipantFactoryImpl.cpp:
Sat May 06 18:47:46 UTC 2017 Johnny Willemsen <[email protected]>
commit 0de09ce01e652c9d7cf2bbb15b822b9092cfab3c
* dds/DCPS/DomainParticipantFactoryImpl.cpp:
* dds/DCPS/Marked_Default_Qos.cpp:
* dds/DCPS/MonitorFactory.h:
Implement the marked domain participant qos similarly to the
other qos settings
* dds/DCPS/DomainParticipantFactoryImpl.cpp:
* dds/DCPS/Marked_Default_Qos.cpp:
* dds/DCPS/MonitorFactory.h:
Sat May 06 08:12:41 UTC 2017 Johnny Willemsen <[email protected]>
commit 579f046f8ebc4652898e0b65b5c74a8ccfaa137a
Merge branch 'master' of
https://github.com/objectcomputing/OpenDDS
Fri May 05 19:12:45 UTC 2017 Adam Mitz <[email protected]>
commit e8d558a9b297efb660d35c7e7cde0282285fe12e
Merge pull request #535 from huangminghuang/thrasher-fix
Fix unsynchronized access to REQUEST ACK TransportQueueElement.
Fri May 05 19:12:13 UTC 2017 Adam Mitz <[email protected]>
commit 47731f3f07132a5f549a8a49c2990f41f8aadddd
Merge branch 'pr533'
Fri May 05 19:11:45 UTC 2017 Adam Mitz <[email protected]>
commit eb24482c9543036461c9288cbc5a098b0891d7d9
Merge pull request #552 from mitza-oci/master
Fixed compiler warnings
Fri May 05 19:11:38 UTC 2017 Adam Mitz <[email protected]>
commit ed1cb69f8e9c0acc39e2755ae7ca645a5374812e
Merge pull request #551 from jwillemsen/jwi-qc-crash-550
Check typed_sample before we pass it to the filter, it is check
for n…
Fri May 05 19:11:29 UTC 2017 Adam Mitz <[email protected]>
commit 83db2fbaab12fe6585c2e58e674997830da95c8d
Merge pull request #547 from
oschwaldp-oci/coverity_scan_defects_fixes
Coverity Scan defect: checking result of dynamic; ACE logging
fixes; etc.
Fri May 05 19:11:17 UTC 2017 Adam Mitz <[email protected]>
commit 34b885b283a720a65e9a8e0add7cef51317181a1
Merge pull request #539 from
jwillemsen/jwi-messagetrackertimestamp
Make use of %#T for logging a timestamp
Fri May 05 19:11:11 UTC 2017 Adam Mitz <[email protected]>
commit 5baaf9716aaaf597a4afc1384bcc447ed4a93dc8
Merge pull request #538 from jwillemsen/jwi-checkwaitreturn
Check return code of WaitSet::wait call in tests
Fri May 05 19:10:38 UTC 2017 Adam Mitz <[email protected]>
commit 7dec95e2d35252037828a81d7329fd9fe6d1b31c
Merge branch 'master' into thrasher-fix
Fri May 05 19:06:46 UTC 2017 Adam Mitz <[email protected]>
commit 2f604d968de3fa754f0cbc62d11b8fcc279a7dcd
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.h:
Removed unneeded friend declaration
Fri May 05 15:44:18 UTC 2017 Adam Mitz <[email protected]>
commit a5aa0746f76b0d17578fd111b2683cc67a00a640
* dds/DCPS/FilterEvaluator.cpp:
* dds/DCPS/WaitSet.cpp:
* tests/DCPS/SharedTransport/TestCase.cpp:
* tests/DCPS/StaticDiscoveryReconnect/StaticDiscoveryTest.cpp:
* tests/DCPS/TimeBasedFilter/main.cpp:
* tools/modeling/tests/RemoteInstHandles/publisher.cpp:
Fixed compiler warnings
Thu May 04 19:19:27 UTC 2017 Johnny Willemsen <[email protected]>
commit d3f60983ca2d5cc3915f8102677d10ca0b6e7781
* dds/DCPS/RakeResults_T.cpp:
Check typed_sample before we pass it to the filter, it is check
for nil further down in the operation
* dds/DCPS/RakeResults_T.cpp:
Thu May 04 14:44:21 UTC 2017 Peter Oschwald <[email protected]>
commit fb6a2e414d561a008679f424f64354cc5a00899f
* tests/DCPS/ConfigTransports/subscriber.cpp:
Adding missing include.
Thu May 04 13:30:13 UTC 2017 Peter Oschwald <[email protected]>
commit 8d4a69f08c4348d84c74be51d9a2ab86caf38fda
* tests/DCPS/UnitTests/DisjointSequence.cpp:
Add missing include.
Thu May 04 11:36:07 UTC 2017 Johnny Willemsen <[email protected]>
commit 14b049e5fab33e47a9405b1b39bc557ebf1472a3
Merge branch 'master' into jwi-skipover
Thu May 04 11:23:25 UTC 2017 Adam Mitz <[email protected]>
commit f3aaa57113d807dbd13e3d8906dffeb2712dfb9a
Merge pull request #548 from mitza-oci/gen-skip-over
Code review changes for PR #513
Thu May 04 08:52:35 UTC 2017 Johnny Willemsen <[email protected]>
commit e02751cd386d8c348e4cc61ca689d7cbd910ac0d
Merge branch 'master' into jwi-messagetrackertimestamp
Thu May 04 05:23:34 UTC 2017 Adam Mitz <[email protected]>
commit 4cee2d287c023f9cab31165098ed3c61487c9d5a
Merge pull request #501 from jwillemsen/jwi-samplelost
Various small improvements
Thu May 04 05:20:07 UTC 2017 Adam Mitz <[email protected]>
commit e18a75ec845c6ec3e79d5ba0d816c58cbaefd477
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Spdp.cpp:
* dds/idl/metaclass_generator.cpp:
Code review changes for pull request 513
Thu May 04 02:44:42 UTC 2017 Peter Oschwald <[email protected]>
commit 4f8c9ce55e59b7f3aeab0bbe2a9e4036a97fb30e
* tests/DCPS/CompatibilityTest/publisher.cpp:
Add include.
Thu May 04 00:10:29 UTC 2017 Peter Oschwald <[email protected]>
commit e4ef1474ba8c15d00e23a1344a8a1f87a8354cfa
* tests/DCPS/QueryCondition/QueryConditionTest.cpp:
Fix trailing whitespace.
Wed May 03 21:23:18 UTC 2017 Peter Oschwald <[email protected]>
commit 06d43d9d0f649260115f4f9ad72de954b8183eea
* tests/DCPS/LargeSample/DataReaderListener.cpp:
* tests/DCPS/LargeSample/Writer.cpp:
Coverity Scan Defects: Addressing Arguments in wrong order.
Wed May 03 21:09:51 UTC 2017 Peter Oschwald <[email protected]>
commit 1d25e744336cbca2446f37c7c5b86c3cc411b79b
* DevGuideExamples/DCPS/Messenger.minimal/Publisher.cpp:
* DevGuideExamples/DCPS/Messenger.minimal/Subscriber.cpp:
* tests/DCPS/CompatibilityTest/publisher.cpp:
* tests/DCPS/ConfigTransports/subscriber.cpp:
* tests/DCPS/PersistentDurability/publisher.cpp:
* tests/DCPS/PersistentInfoRepo/Publisher.cpp:
* tests/DCPS/PersistentInfoRepo/Subscriber.cpp:
* tests/DCPS/Reliability/pub/Publisher.cpp:
* tests/DCPS/Reliability/sub/Subscriber.cpp:
* tests/DCPS/UnitTests/DisjointSequence.cpp:
Use %C format specifier.
Wed May 03 20:37:48 UTC 2017 Peter Oschwald <[email protected]>
commit f135eaf6eea19786521449e53103fae353c279f5
* tests/DCPS/CompatibilityTest/publisher.cpp:
* tests/DCPS/ConfigFile/ConfigFile.cpp:
* tests/DCPS/ConfigTransports/subscriber.cpp:
* tests/DCPS/ContentFilteredTopic/ContentFilteredTopicTest.cpp:
* tests/DCPS/DpShutdown/dpshutdown.cpp:
* tests/DCPS/FooTest5_0/main.cpp:
* tests/DCPS/GuardCondition/GuardConditionTest.cpp:
* tests/DCPS/ManualAssertLiveliness/publisher.cpp:
* tests/DCPS/QueryCondition/QueryConditionTest.cpp:
* tests/DCPS/ReadCondition/ReadConditionTest.cpp:
* tests/DCPS/RtpsMessages/RtpsMessagesTest.cpp:
* tests/DCPS/SharedTransport/TestCase.cpp:
* tests/DCPS/StatusCondition/StatusConditionTest.cpp:
* tests/DCPS/UnitTests/DisjointSequence.cpp:
* tests/DCPS/UnitTests/Fragmentation.cpp:
* tests/DCPS/UnitTests/RtpsFragmentation.cpp:
* tests/DCPS/UnitTests/ut_BIT_DataReader.cpp:
* tests/DCPS/UnitTests/ut_ParameterListConverter.cpp:
* tests/DCPS/UnitTests/ut_Reassembly.cpp:
* tests/DCPS/UnitTests/ut_RepoIdSequence.cpp:
* tests/FACE/Reliability/Publisher/Publisher.cpp:
* tests/FACE/Reliability/Subscriber/Subscriber.cpp:
* tests/FACE/Unit/QosSettingsTest.cpp:
* tests/transport/rtps_reliability/rtps_reliability.cpp:
* tests/transport/simple/pub_main.cpp:
* tests/transport/simple/sub_main.cpp:
Coverity Scan Defects: Addressing Uncaught Exceptions
Wed May 03 19:10:52 UTC 2017 Peter Oschwald <[email protected]>
commit 5fba73365ce79e7c879036d1d56a1859dad14a6d
* tests/DCPS/FooTest3_0/SubDriver.cpp:
* tests/DCPS/FooTest5/publisher.cpp:
* tests/DCPS/FooTest5/subscriber.cpp:
* tests/DCPS/LivelinessKeepAliveTest/publisher.cpp:
* tests/DCPS/LivelinessKeepAliveTest/subscriber.cpp:
* tests/DCPS/LivelinessTest/publisher.cpp:
* tests/DCPS/LivelinessTest/subscriber.cpp:
* tests/DCPS/ManyTopicTest/publisher.cpp:
* tests/DCPS/ManyTopicTest/subscriber.cpp:
* tests/DCPS/MultiDPTest/publisher.cpp:
* tests/DCPS/MultiDPTest/subscriber.cpp:
* tests/DCPS/TcpReconnect/stub.cpp:
Coverity Scan Defects: Dereference after null check fixes.
Wed May 03 18:22:11 UTC 2017 Peter Oschwald <[email protected]>
commit 3f48033266aee2a113f85aefa5550573a4fabe48
* examples/DCPS/Messenger_IOGR_Imr/subscriber.cpp:
* examples/DCPS/Messenger_Imr/subscriber.cpp:
* performance-tests/DCPS/MulticastListenerTest/subscriber.cpp:
* performance-tests/DCPS/TCPListenerTest/subscriber.cpp:
* performance-tests/DCPS/UDPListenerTest/subscriber.cpp:
* tests/DCPS/BidirMessenger/pubsub.cpp:
* tests/DCPS/BuiltInTopicTest/subscriber.cpp:
* tests/DCPS/CompatibilityTest/subscriber.cpp:
* tests/DCPS/CorbaSeq/subscriber.cpp:
* tests/DCPS/Deadline/subscriber.cpp:
* tests/DCPS/LatencyBudget/subscriber.cpp:
* tests/DCPS/Lifespan/subscriber.cpp:
* tests/DCPS/LivelinessTest/subscriber.cpp:
* tests/DCPS/LivelinessTimeout/subscriber.cpp:
* tests/DCPS/PersistentDurability/subscriber.cpp:
* tests/DCPS/Prst_delayed_subscriber/subscriber.cpp:
* tests/DCPS/Reconnect/subscriber.cpp:
* tests/DCPS/Rejects/subscriber.cpp:
* tests/DCPS/SampleLost/subscriber.cpp:
* tests/DCPS/Serializer_wstring/subscriber.cpp:
* tests/DCPS/SetQosDeadline/subscriber.cpp:
* tests/DCPS/SetQosPartition/subscriber.cpp:
* tests/DCPS/StaticDiscovery/StaticDiscoveryTest.cpp:
* tests/DCPS/TransientDurability/subscriber.cpp:
* tests/DCPS/TransientLocalMultiInstanceTest/publisher.cpp:
* tests/DCPS/TransientLocalMultiInstanceTest/subscriber.cpp:
* tests/DCPS/TransientLocalTest/subscriber.cpp:
Coverity Scan Defect: Addressing Unchecked dynamic_cast issues.
Tue May 02 21:48:11 UTC 2017 Adam Mitz <[email protected]>
commit 219e3093140495448d3b26d17594485a2c52bb1e
Merge pull request #545 from huangminghuang/MultiTopic-fix
Fix listener created in a loop issue
Tue May 02 14:42:08 UTC 2017 Huang-Ming Huang <[email protected]>
commit 9cf3fee2c40dd4d358ac38afdc023be225d12933
* dds/DCPS/MultiTopicDataReaderBase.cpp:
Fix listener created in a loop issue
Tue May 02 14:32:34 UTC 2017 Adam Mitz <[email protected]>
commit 0cabd80dec974eae037a17103549dbb811958dca
Merge pull request #543 from jwillemsen/jwi-fixes540
Fix compile errors/warnings as introduced by PR #540
Tue May 02 06:54:15 UTC 2017 Johnny Willemsen <[email protected]>
commit 35ef1b49f2d49da4b512509c7a59b3b9d5eea2a9
* dds/DCPS/MultiTopicDataReaderBase.cpp:
* dds/DCPS/MultiTopicDataReaderBase.h:
Fix compile errors/warnings as introduced by PR #540
* dds/DCPS/MultiTopicDataReaderBase.cpp:
* dds/DCPS/MultiTopicDataReaderBase.h:
Tue May 02 06:39:34 UTC 2017 Johnny Willemsen <[email protected]>
commit 1141486019472cc02c6ef938a94a88a53597b8e3
Merge branch 'master' into jwi-messagetrackertimestamp
Tue May 02 06:38:54 UTC 2017 Johnny Willemsen <[email protected]>
commit 819e51290ebbd992b11713ca2076e9155fd62e03
Merge branch 'master' into jwi-checkwaitreturn
Tue May 02 06:38:39 UTC 2017 Johnny Willemsen <[email protected]>
commit 3a3b4167e33dda6bd7e3ab81f605d0f6785b47b5
Merge branch 'master' into jwi-skipover
Tue May 02 06:38:19 UTC 2017 Johnny Willemsen <[email protected]>
commit afc4d480969bccc8342b9221f3f568f290ad9c5e
Merge branch 'jwi-samplelost' of
https://github.com/jwillemsen/OpenDDS into jwi-samplelost
Tue May 02 06:37:44 UTC 2017 Johnny Willemsen <[email protected]>
commit 7bc35325f18d707e3f09bb438ca1c22bdd59ddb7
Merge branch 'master' into jwi-samplelost
Mon May 01 19:51:36 UTC 2017 Adam Mitz <[email protected]>
commit 91e3424a6bc8cb9defa171d16e5d0b8a582215ac
Merge pull request #542 from huangminghuang/suncc-fix
Fix std::count with Sun CC
Mon May 01 19:51:25 UTC 2017 Adam Mitz <[email protected]>
commit c6658155847588dfaac69278c4af98e5725a8acb
Merge pull request #540 from huangminghuang/cygwin-link-fix
Fix MinGW link issue
Mon May 01 19:51:13 UTC 2017 Adam Mitz <[email protected]>
commit 70858ccf5955e741587f6cd1cf3cadc63a3ccac7
Merge pull request #536 from jwillemsen/jwi-samplelostcrash
Fix sample lost crash
Mon May 01 19:45:59 UTC 2017 Johnny Willemsen <[email protected]>
commit 7e3dd554f4f4efbdbb07150928e10c29ee1d92b0
* examples/DCPS/Messenger_IOGR_Imr/README:
Fixed text
Mon May 01 14:42:13 UTC 2017 Huang-Ming Huang <[email protected]>
commit a5315e7c904c4cf5bda2f9cca2ee0a8c4b245bba
* dds/DCPS/MultiTopicDataReaderBase.cpp:
* dds/DCPS/MultiTopicDataReaderBase.h:
Fix mingw64 link issue
Mon May 01 17:43:12 UTC 2017 Huang-Ming Huang <[email protected]>
commit 0ebeaf5140809c8639fdca2b7743f4f53279d90a
* dds/DCPS/transport/framework/TransportInst.cpp:
Fix std::count with Sun CC
Mon May 01 14:44:39 UTC 2017 Johnny Willemsen <[email protected]>
commit 881615cf111a1f300b5a8741a7176fffdd993ab6
* dds/DCPS/MessageTracker.cpp:
Add file header
* dds/DCPS/MessageTracker.cpp:
Mon May 01 14:44:04 UTC 2017 Johnny Willemsen <[email protected]>
commit 36c24acf56d2e6caaeaa4a63984d063389b5412a
* dds/DCPS/MessageTracker.cpp:
* dds/DCPS/WriteDataContainer.cpp:
Make use of %#T to log a time
* dds/DCPS/MessageTracker.cpp:
* dds/DCPS/WriteDataContainer.cpp:
Mon May 01 14:39:08 UTC 2017 Johnny Willemsen <[email protected]>
commit 9353111aaa6c40c879e6a9c914d1508b3d342309
* dds/DCPS/MessageTracker.cpp:
Fixed formatting mask
* dds/DCPS/MessageTracker.cpp:
Sun Apr 30 19:36:06 UTC 2017 Johnny Willemsen <[email protected]>
commit fef6bce99223abe2f73a2c2e74c9f926769d634f
Merge branch 'master' into jwi-messagetrackertimestamp
Sun Apr 30 19:25:14 UTC 2017 Johnny Willemsen <[email protected]>
commit 7b5b01634cf063499c7486a1d91d2da2391ce89c
* tests/DCPS/ContentFilteredTopic/ContentFilteredTopicTest.cpp:
* tests/DCPS/Deadline/subscriber.cpp:
* tests/DCPS/QueryCondition/QueryConditionTest.cpp:
Check return code of ws->wait call
* tests/DCPS/ContentFilteredTopic/ContentFilteredTopicTest.cpp:
* tests/DCPS/Deadline/subscriber.cpp:
* tests/DCPS/QueryCondition/QueryConditionTest.cpp:
Sun Apr 30 10:41:49 UTC 2017 Johnny Willemsen <[email protected]>
commit 8182c191f3793ce7e18611f10514632fc3252038
* dds/DCPS/DataReaderImpl.cpp:
Check whether we have an instance in a few places, fixes the
crashing of the samplelost test
* dds/DCPS/DataReaderImpl.cpp:
Sun Apr 30 10:41:16 UTC 2017 Johnny Willemsen <[email protected]>
commit 17324a127b497c04396f37e4b69294d70007622a
* tests/DCPS/SampleLost/DataReaderListener.cpp:
Only print sample data when we have a valid sample
* tests/DCPS/SampleLost/DataReaderListener.cpp:
Fri Apr 28 20:36:48 UTC 2017 Huang-Ming Huang <[email protected]>
commit 459cc281e35bc2328fe9dc89fe9c6d502c89680a
* dds/DCPS/transport/framework/TransportSendStrategy.cpp:
* dds/DCPS/transport/framework/TransportSendStrategy.h:
* dds/DCPS/transport/tcp/TcpDataLink.cpp:
* dds/DCPS/transport/tcp/TcpSendStrategy.cpp:
* dds/DCPS/transport/tcp/TcpSendStrategy.h:
Fix unsynchronized access to REQUEST ACK TransportQueueElement.
Fri Apr 28 17:03:25 UTC 2017 Adam Mitz <[email protected]>
commit 25919bda2fff03d1f8433b81a26058acde25733f
Merge pull request #534 from huangminghuang/master
Fix missing include
Fri Apr 28 13:26:30 UTC 2017 Huang-Ming Huang <[email protected]>
commit ffaf27f6a18309370c8da13d0286d31298627b5b
Merge remote-tracking branch 'upstream/master'
Fri Apr 28 13:19:49 UTC 2017 Huang-Ming Huang <[email protected]>
commit 51c5ae422acbe9edeaff86b05d47f978e1b1c63e
* dds/DCPS/transport/framework/TransportInst.cpp:
Fix missing include
Thu Apr 27 18:20:33 UTC 2017 Johnny Willemsen <[email protected]>
commit 57bc0bae371e514b70dc9fffe716a98e04c577ad
Merge branch 'master' into jwi-samplelost
Thu Apr 27 18:19:56 UTC 2017 Johnny Willemsen <[email protected]>
commit e65dc3c5795ef6a6defd2f09260268ae86987eb8
Merge branch 'master' into jwi-skipover
Thu Apr 27 16:16:12 UTC 2017 Huang-Ming Huang <[email protected]>
commit 1c2129fa036e713e534ad314501b973234bcb8b1
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.h:
Fix deadlock issue in RtpsUdpDataLink
Thu Apr 27 15:57:00 UTC 2017 Adam Mitz <[email protected]>
commit bbb864a8a173876ed31f70056603ced7325d979b
Merge pull request #532 from huangminghuang/master
Fix snprintf not found problem
Thu Apr 27 13:54:18 UTC 2017 Huang-Ming Huang <[email protected]>
commit be5898f985b370acc1712e47251e482ba04b007b
* dds/DCPS/transport/framework/TransportInst.cpp:
Fix snprintf not found problem
Wed Apr 26 20:29:52 UTC 2017 Adam Mitz <[email protected]>
commit 5176e36c9c32bc19fccbb12ee2b9141417f05aaa
Merge pull request #531 from mitza-oci/master
Fixed compile error on SunCC
Wed Apr 26 20:29:46 UTC 2017 Adam Mitz <[email protected]>
commit fee2994a6e317eeab18633a6b9b5cec45470bfa0
Merge pull request #525 from huangminghuang/ipv6_addr-fix
Fix IPv6 address text representation problem
Wed Apr 26 20:29:34 UTC 2017 Adam Mitz <[email protected]>
commit 18c22c52d9d354ffd7e7ea91db1369a970539781
Merge pull request #492 from jwillemsen/jwi-cft-parameters
Fix warning in ShmemTransport in some configurations
Wed Apr 26 19:40:01 UTC 2017 Adam Mitz <[email protected]>
commit e034146c272ee62b2f4e8702222a84670eb6f071
* tests/DCPS/Priority/DataReaderListener.cpp:
Fixed compile error on SunCC
Mon Apr 24 16:45:02 UTC 2017 Peter Oschwald <[email protected]>
commit 0fa165eb91f473502dfd14bcb908f1fbc109075d
Merge pull request #530 from
objectcomputing/oschwaldp-oci-patch-1
Update travis.yml to increase the wait
Mon Apr 24 13:35:07 UTC 2017 Peter Oschwald <[email protected]>
commit 09784d8a6d59b5c0dbb88e555a31b68f345b1f3b
* .travis.yml:
Update travis.yml to increase the wait
Java build failed with timeout again, so increasing the wait to
45 min.
Mon Apr 24 08:38:12 UTC 2017 Johnny Willemsen <[email protected]>
commit ac439a5c8b77db033deb9fbb920d2fbae56b4da9
Merge branch 'master' into jwi-messagetrackertimestamp
Mon Apr 24 08:37:42 UTC 2017 Johnny Willemsen <[email protected]>
commit 304ca3953c462275509c21792fe2c83821002ad8
Merge branch 'master' into jwi-cft-parameters
Mon Apr 24 08:37:17 UTC 2017 Johnny Willemsen <[email protected]>
commit 501ca5fc0edee7367ae841a422d751ec391f002a
Merge branch 'master' into jwi-samplelost
Mon Apr 24 02:21:05 UTC 2017 Adam Mitz <[email protected]>
commit 307a7565298da07eb12e83bf6993d6abdf8471be
Merge pull request #529 from mitza-oci/cft-parameters
Content-filter parameters checking (from PR #492)
Mon Apr 24 02:20:44 UTC 2017 Adam Mitz <[email protected]>
commit 2be21f387a242c2d3d21b2da05a88b2f54ed2968
Merge pull request #490 from jwillemsen/master
Fixed crashes as reported with issue #489
Fri Apr 21 21:16:25 UTC 2017 Adam Mitz <[email protected]>
commit 89efb3f3a343712a74365323f091db4e7642449a
Merge pull request #528 from mitza-oci/samplelost
New test for "SampleLost"
Fri Apr 21 21:12:15 UTC 2017 Adam Mitz <[email protected]>
commit 275115425a492b4b4667bd07eb1d21ad9628373e
Merge pull request #527 from oschwaldp-oci/durability_updates
Replace use of C++11 map supported at function for older
compilers.
Fri Apr 21 21:08:52 UTC 2017 Adam Mitz <[email protected]>
commit e908b2998136141b5b7f9470189a43732b2c978e
* dds/DCPS/ContentFilteredTopicImpl.cpp:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DomainParticipantImpl.cpp:
* dds/DCPS/FilterEvaluator.cpp:
* dds/DCPS/QueryConditionImpl.cpp:
* tests/DCPS/ContentFilteredTopic/ContentFilteredTopicTest.cpp:
* tests/DCPS/Priority/DataReaderListener.h:
* tests/DCPS/QueryCondition/QueryConditionTest.cpp:
Code review changes from PR #492.
Fri Apr 21 20:35:07 UTC 2017 Adam Mitz <[email protected]>
commit b69b91913c63cd18b256af0721807e36275d6298
Merge pull request #515 from jwillemsen/jwi-conditionmutex
Add some documentation and log after we have acquire the mutex
Fri Apr 21 20:23:51 UTC 2017 Adam Mitz <[email protected]>
commit b20a6e2aa1627d49986f81be4980ee0ab77b673d
Merge pull request #508 from jwillemsen/jwi-appveyor-509
Upgrade appveyor to use Visual Studio 2017, issue #507
Fri Apr 21 20:23:44 UTC 2017 Adam Mitz <[email protected]>
commit a8eeb761471957e4e837d667e5285fddf4514507
Merge pull request #523 from oschwaldp-oci/readme_updates
Update README.md
Fri Apr 21 20:23:04 UTC 2017 Adam Mitz <[email protected]>
commit 9ff7e775419f71e8700c51622fe74116d81c2065
Merge pull request #496 from jwillemsen/jwi-filtercrash
Check if item_registered_data_ is not null before calling into
the…
Thu Apr 06 06:04:19 UTC 2017 Johnny Willemsen <[email protected]>
commit 895eee37acd5d3e25f3b022fb95075219d30ef4b
* tests/DCPS/SampleLost/publisher.cpp:
* tests/DCPS/SampleLost/subscriber.cpp:
Fixed clang compile errors
* tests/DCPS/SampleLost/publisher.cpp:
* tests/DCPS/SampleLost/subscriber.cpp:
(cherry picked from commit
7fca2bbca48e1951fe1fe191035f30fb046f113d)
Wed Apr 05 12:24:19 UTC 2017 Johnny Willemsen <[email protected]>
commit 077bead718cbaf7b336577671952b3e94c87a634
* tests/DCPS/SampleLost/run_test.pl:
Added -d commandline option to enable full logging
* tests/DCPS/SampleLost/run_test.pl:
(cherry picked from commit
d1f44d86b1d36d82af2efc5c834f6110e278022e)
Wed Apr 05 12:18:12 UTC 2017 Johnny Willemsen <[email protected]>
commit 585d70b5dfc3804fb893c35392bb2c61338e2275
* bin/dcps_tests.lst:
Added new test
* bin/dcps_tests.lst:
(cherry picked from commit
9500cf5c8e12064cc39818bac9e38d5dd8bb46ed)
Fri Apr 21 20:03:13 UTC 2017 Adam Mitz <[email protected]>
commit 5a60736ba6084b1f05cf0ce5dc06c8b920234530
* tests/DCPS/SampleLost/.gitignore:
* tests/DCPS/SampleLost/DataReaderListener.cpp:
* tests/DCPS/SampleLost/DataReaderListener.h:
* tests/DCPS/SampleLost/DataWriterListenerImpl.cpp:
* tests/DCPS/SampleLost/DataWriterListenerImpl.h:
* tests/DCPS/SampleLost/Messenger.idl:
* tests/DCPS/SampleLost/README:
* tests/DCPS/SampleLost/SampleLost.mpc:
* tests/DCPS/SampleLost/SampleLost_export.h:
* tests/DCPS/SampleLost/Writer.cpp:
* tests/DCPS/SampleLost/Writer.h:
* tests/DCPS/SampleLost/pub.ini:
* tests/DCPS/SampleLost/publisher.cpp:
* tests/DCPS/SampleLost/run_test.pl:
* tests/DCPS/SampleLost/sub.ini:
* tests/DCPS/SampleLost/subscriber.cpp:
Reworked this test to reproduce issue #489
* tests/DCPS/SampleLost/DataReaderListener.cpp:
* tests/DCPS/SampleLost/DataReaderListener.h:
* tests/DCPS/SampleLost/DataWriterListenerImpl.cpp:
* tests/DCPS/SampleLost/DataWriterListenerImpl.h:
* tests/DCPS/SampleLost/Messenger.idl:
* tests/DCPS/SampleLost/README:
* tests/DCPS/SampleLost/SampleLost.mpc:
* tests/DCPS/SampleLost/SampleLost_export.h:
* tests/DCPS/SampleLost/Writer.cpp:
* tests/DCPS/SampleLost/Writer.h:
* tests/DCPS/SampleLost/pub.ini:
* tests/DCPS/SampleLost/publisher.cpp:
* tests/DCPS/SampleLost/run_test.pl:
* tests/DCPS/SampleLost/sub.ini:
* tests/DCPS/SampleLost/subscriber.cpp:
Added.
(cherry picked from commit
1a4d3e975f82ad8aebc79d367fdce75748e14d11)
Fri Apr 21 17:04:55 UTC 2017 Huang-Ming Huang <[email protected]>
commit 5d91ec34f44e7f7ef1ca91a18300e3b8cb0873ba
* dds/DCPS/transport/framework/TransportInst.cpp:
* dds/DCPS/transport/framework/TransportInst.h:
Fix ushort unavailable on Windows
Fri Apr 21 16:47:54 UTC 2017 Adam Mitz <[email protected]>
commit cb354af02ff206b75ba0a437e8f376b6e33b1811
Merge pull request #526 from mitza-oci/configure-intl
Support more translated versions of MSVC++ for version number
detection
Fri Apr 21 16:47:26 UTC 2017 Adam Mitz <[email protected]>
commit deea846830a200a43be7a1508a35ecc07b79b56e
Merge pull request #524 from mitza-oci/ddsidl-nflnoninline
Made some inline functions non-inline since older GCC versions
couldn't...
Fri Apr 21 15:27:29 UTC 2017 Peter Oschwald <[email protected]>
commit 53b849f2564a1144318653ee649cabc4322e91ff
* tests/DCPS/TransientLocalMultiInstanceTest/DataReaderListener.cpp:
Replace use of C++11 map supported at function for older
compilers.
Fri Apr 21 15:24:28 UTC 2017 Adam Mitz <[email protected]>
commit 4b98379683e725a8a1223067fbe27ff4b266def2
* configure: