-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathChangeLog
More file actions
1664 lines (1217 loc) · 56.4 KB
/
Copy pathChangeLog
File metadata and controls
1664 lines (1217 loc) · 56.4 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
Mon Apr 22 14:43:53 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Hash_Map_Manager_T.inl:
* ace/Hash_Map_Manager_T.cpp:
Fixed maybe unitialized warnings
Fri Apr 19 19:15:42 UTC 2013 Adam Mitz <mitza@ociweb.com>
* bin/fuzz.pl:
Added a fuzz check for the category-specifc ACE log macros.
* ace/XML_Utils/XML_Helper.tpp:
Fixed fuzz error.
Fri Apr 19 14:39:41 UTC 2013 Huang-Ming Huang <huangh@ociweb.com>
* ace/Log_Category.cpp:
* ace/Log_Record.cpp:
Fixed Coverity warnings.
Fri Apr 19 12:02:36 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* contrib/minizip/unzip.c:
* contrib/minizip/zip.c:
Fixed warnings
Fri Apr 19 11:15:43 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp:
* examples/IPC_SAP/SSL_SAP/SSL-client.cpp:
Fixed warnings in single threaded builds
Thu Apr 18 16:21:32 UTC 2013 Huang-Ming Huang <huangh@ociweb.com>
* ace/Log_Category.h:
* ace/Log_Category.cpp:
Fixed main thread Log_Category_TSS object not cleaned up before
program exits.
Mon Apr 15 22:45:14 UTC 2013 Steve Huston <shuston@riverace.com>
* ace/Dev_Poll_Reactor.h:
* ace/Dev_Poll_Reactor.cpp: Changed the repository lock (repo_token_)
from an ACE_DEV_POLL_TOKEN to ACE_SYNCH_MUTEX and renamed it
repo_lock_. Gets a few more percent improvement in performance.
Mon Apr 15 17:46:24 UTC 2013 Huang-Ming Huang <huangh@ociweb.com>
* ace/Log_Category.inl:
Fixed linking problem for ST build.
Mon Apr 15 14:28:43 UTC 2013 Steve Huston <shuston@riverace.com>
* ace/Dev_Poll_Reactor.cpp: Fixed single-threaded build issues.
Fuzz tweaks.
Mon Apr 15 13:59:55 UTC 2013 Adam Mitz <mitza@ociweb.com>
* ace/Log_Record.inl:
Fixed ACE_TRACE macro to match actual method name.
Fri Apr 12 19:49:50 UTC 2013 Steve Huston <shuston@riverace.com>
* ace/Dev_Poll_Reactor.cpp:
* ace/Dev_Poll_Reactor.h: Take advantage of the thread-safe behavior
of epoll_ctl/epoll_wait and allow changes to the wait set to be made
without interrupting the waiting leader thread. To make timers and
notifies more predictable, still allow only one thread to wait for
events at a time, but allow registrations, removals, etc. to the
wait set to be made by any thread. The "reactor token" now controls
the leader/followers for event dispatching; a new repository token
is added to synchronize access to the handler repository, independent
of waiting for events.
Fri Apr 12 19:43:34 UTC 2013 Huang-Ming Huang <huangh@ociweb.com>
* ace/Log_Category.cpp:
Fixed problem caused by pervious commit.
Fri Apr 12 19:30:05 UTC 2013 Huang-Ming Huang <huangh@ociweb.com>
* ace/Log_Category.h:
* ace/Log_Category.cpp:
Fixed problem for ST build
* tests/Log_Msg_Test.cpp:
Fixed problem for WCHAR build
Thu Apr 11 19:53:22 UTC 2013 Huang-Ming Huang <huangh@ociweb.com>
* ace/Log_Category.h:
Fixed some documentation problems.
Thu Apr 11 19:42:14 UTC 2013 Huang-Ming Huang <huangh@ociweb.com>
* ace/Log_Category.h:
Fixed ACELIB_ERROR_RETURN() control reaches end of non-void function warning.
* tests/Log_Msg_Test.cpp:
Added test for ACE_Log_Category
Thu Apr 11 17:54:55 UTC 2013 Huang-Ming Huang <huangh@ociweb.com>
* ace/ace_for_tao.mpc:
Added missing file.
Thu Apr 11 15:45:41 UTC 2013 Huang-Ming Huang <huangh@ociweb.com>
* ace/ACE.cpp:
* ace/ARGV.cpp:
* ace/ATM_Acceptor.inl:
* ace/ATM_Acceptor.cpp:
* ace/ATM_Addr.cpp:
* ace/ATM_Connector.inl:
* ace/ATM_Connector.cpp:
* ace/ATM_QoS.cpp:
* ace/ATM_Stream.cpp:
* ace/Acceptor.cpp:
* ace/Activation_Queue.cpp:
* ace/Addr.cpp:
* ace/Assert.cpp:
* ace/Asynch_Acceptor.cpp:
* ace/Asynch_Connector.cpp:
* ace/Asynch_Pseudo_Task.cpp:
* ace/Atomic_Op.cpp:
* ace/Atomic_Op_GCC_T.cpp:
* ace/Atomic_Op_T.cpp:
* ace/Auto_IncDec_T.cpp:
* ace/Barrier.cpp:
* ace/Based_Pointer_T.cpp:
* ace/Basic_Stats.cpp:
* ace/Bound_Ptr.inl:
* ace/CE_Screen_Output.cpp:
* ace/Cache_Map_Manager_T.cpp:
* ace/Cached_Connect_Strategy_T.cpp:
* ace/Caching_Strategies_T.inl:
* ace/Caching_Strategies_T.cpp:
* ace/Capabilities.cpp:
* ace/Codecs.cpp:
* ace/Condition_Recursive_Thread_Mutex.cpp:
* ace/Condition_T.cpp:
* ace/Condition_Thread_Mutex.cpp:
* ace/Configuration.cpp:
* ace/Connector.cpp:
* ace/Containers_T.cpp:
* ace/DEV_Addr.cpp:
* ace/DEV_Connector.h:
* ace/DEV_Connector.inl:
* ace/DEV_IO.cpp:
* ace/DLL.cpp:
* ace/DLL_Manager.cpp:
* ace/Dev_Poll_Reactor.inl:
* ace/Dev_Poll_Reactor.cpp:
* ace/Dirent.inl:
* ace/Dump.cpp:
* ace/Dynamic_Message_Strategy.cpp:
* ace/Dynamic_Service_Base.cpp:
* ace/Dynamic_Service_Dependency.cpp:
* ace/Event.cpp:
* ace/Event_Base.cpp:
* ace/FIFO.cpp:
* ace/FIFO_Recv.cpp:
* ace/FIFO_Recv_Msg.cpp:
* ace/FIFO_Send.cpp:
* ace/FIFO_Send_Msg.cpp:
* ace/FILE_Addr.cpp:
* ace/FILE_Connector.h:
* ace/FILE_Connector.inl:
* ace/FILE_Connector.cpp:
* ace/FILE_IO.cpp:
* ace/File_Lock.cpp:
* ace/Filecache.cpp:
* ace/Framework_Component.cpp:
* ace/Future.cpp:
* ace/Get_Opt.cpp:
* ace/Guard_T.cpp:
* ace/Handle_Set.inl:
* ace/Handle_Set.cpp:
* ace/Hash_Map_Manager_T.h:
* ace/Hash_Map_Manager_T.inl:
* ace/Hash_Map_Manager_T.cpp:
* ace/Hash_Multi_Map_Manager_T.h:
* ace/Hash_Multi_Map_Manager_T.inl:
* ace/Hash_Multi_Map_Manager_T.cpp:
* ace/High_Res_Timer.cpp:
* ace/ICMP_Socket.cpp:
* ace/INET_Addr.cpp:
* ace/IO_SAP.cpp:
* ace/IPC_SAP.cpp:
* ace/Intrusive_Auto_Ptr.inl:
* ace/LSOCK.cpp:
* ace/LSOCK_Acceptor.cpp:
* ace/LSOCK_CODgram.cpp:
* ace/LSOCK_Connector.cpp:
* ace/LSOCK_Dgram.cpp:
* ace/LSOCK_Stream.cpp:
* ace/Lib_Find.cpp:
* ace/Local_Memory_Pool.cpp:
* ace/Local_Name_Space_T.cpp:
* ace/Local_Tokens.h:
* ace/Local_Tokens.inl:
* ace/Local_Tokens.cpp:
* ace/Log_Category.h:
* ace/Log_Msg.cpp:
* ace/Log_Msg_NT_Event_Log.cpp:
* ace/Log_Msg_UNIX_Syslog.cpp:
* ace/Log_Record.cpp:
* ace/Logging_Strategy.h:
* ace/Logging_Strategy.cpp:
* ace/MEM_Acceptor.cpp:
* ace/MEM_Addr.cpp:
* ace/MEM_Connector.cpp:
* ace/MEM_IO.cpp:
* ace/MEM_SAP.cpp:
* ace/MMAP_Memory_Pool.cpp:
* ace/Malloc.h:
* ace/Malloc.cpp:
* ace/Malloc_Allocator.cpp:
* ace/Malloc_T.cpp:
* ace/Map_Manager.inl:
* ace/Map_Manager.cpp:
* ace/Mem_Map.cpp:
* ace/Message_Block.cpp:
* ace/Message_Queue.cpp:
* ace/Message_Queue_NT.cpp:
* ace/Message_Queue_T.cpp:
* ace/Message_Queue_Vx.cpp:
* ace/Module.cpp:
* ace/Monitor_Admin.cpp:
* ace/Monitor_Base.cpp:
* ace/Monitor_Control/BSD_Network_Interface_Monitor.cpp:
* ace/Monitor_Control/CPU_Load_Monitor.cpp:
* ace/Monitor_Control/Constraint_Interpreter.cpp:
* ace/Monitor_Control/FreeBSD_Network_Interface_Monitor.cpp:
* ace/Monitor_Control/Linux_Network_Interface_Monitor.cpp:
* ace/Monitor_Control/Memory_Usage_Monitor.cpp:
* ace/Monitor_Control/Monitor_Query.cpp:
* ace/Monitor_Control/Num_Threads_Monitor.cpp:
* ace/Monitor_Control/Solaris_Network_Interface_Monitor.cpp:
* ace/Monitor_Control/Windows_Monitor.cpp:
* ace/Monitor_Control/Windows_Multi_Instance_Monitor.cpp:
* ace/Monitor_Point_Registry.cpp:
* ace/Multihomed_INET_Addr.cpp:
* ace/Mutex.cpp:
* ace/NT_Service.cpp:
* ace/Name_Proxy.cpp:
* ace/Name_Request_Reply.cpp:
* ace/Naming_Context.cpp:
* ace/OS_NS_Thread.cpp:
* ace/OS_NS_dirent.cpp:
* ace/OS_NS_stdio.cpp:
* ace/OS_NS_unistd.cpp:
* ace/Obchunk.cpp:
* ace/Object_Manager.cpp:
* ace/Obstack_T.cpp:
* ace/PI_Malloc.cpp:
* ace/POSIX_Asynch_IO.cpp:
* ace/POSIX_CB_Proactor.cpp:
* ace/POSIX_Proactor.cpp:
* ace/Pagefile_Memory_Pool.cpp:
* ace/Parse_Node.cpp:
* ace/Ping_Socket.cpp:
* ace/Pipe.cpp:
* ace/Priority_Reactor.cpp:
* ace/Proactor.cpp:
* ace/Process.cpp:
* ace/Process_Manager.cpp:
* ace/Process_Mutex.cpp:
* ace/Process_Semaphore.cpp:
* ace/Profile_Timer.cpp:
* ace/QoS/QoS_Manager.cpp:
* ace/QoS/QoS_Session_Factory.cpp:
* ace/QoS/QoS_Session_Impl.inl:
* ace/QoS/QoS_Session_Impl.cpp:
* ace/QoS/SOCK_Dgram_Mcast_QoS.cpp:
* ace/RB_Tree.inl:
* ace/RB_Tree.cpp:
* ace/RW_Mutex.cpp:
* ace/RW_Process_Mutex.cpp:
* ace/Reactor_Token_T.cpp:
* ace/Read_Buffer.cpp:
* ace/Recursive_Thread_Mutex.cpp:
* ace/Refcounted_Auto_Ptr.inl:
* ace/Registry_Name_Space.cpp:
* ace/Remote_Name_Space.cpp:
* ace/Remote_Tokens.cpp:
* ace/SOCK.cpp:
* ace/SOCK_Acceptor.cpp:
* ace/SOCK_CODgram.cpp:
* ace/SOCK_Connector.cpp:
* ace/SOCK_Dgram.cpp:
* ace/SOCK_Dgram_Bcast.cpp:
* ace/SOCK_Dgram_Mcast.cpp:
* ace/SOCK_Netlink.cpp:
* ace/SOCK_SEQPACK_Acceptor.cpp:
* ace/SOCK_SEQPACK_Association.cpp:
* ace/SOCK_SEQPACK_Connector.cpp:
* ace/SPIPE_Acceptor.cpp:
* ace/SPIPE_Connector.cpp:
* ace/SSL/SSL_Asynch_Stream.cpp:
* ace/SSL/SSL_Context.cpp:
* ace/SSL/SSL_SOCK_Acceptor.cpp:
* ace/SSL/SSL_SOCK_Connector.cpp:
* ace/SSL/SSL_SOCK_Stream.cpp:
* ace/SUN_Proactor.cpp:
* ace/SV_Message_Queue.cpp:
* ace/SV_Semaphore_Complex.cpp:
* ace/SV_Semaphore_Simple.cpp:
* ace/SV_Shared_Memory.cpp:
* ace/Sample_History.cpp:
* ace/Sbrk_Memory_Pool.cpp:
* ace/Select_Reactor_Base.cpp:
* ace/Select_Reactor_T.cpp:
* ace/Semaphore.cpp:
* ace/Service_Config.cpp:
* ace/Service_Gestalt.cpp:
* ace/Service_Manager.cpp:
* ace/Service_Object.cpp:
* ace/Service_Repository.cpp:
* ace/Shared_Memory_Pool.cpp:
* ace/Signal.cpp:
* ace/Singleton.cpp:
* ace/Sock_Connect.cpp:
* ace/Stack_Trace.h:
* ace/Stats.h:
* ace/Stats.inl:
* ace/Strategies_T.inl:
* ace/Strategies_T.cpp:
* ace/Stream.cpp:
* ace/Svc_Conf_y.cpp:
* ace/Svc_Handler.cpp:
* ace/System_Time.cpp:
* ace/TLI.cpp:
* ace/TLI_Acceptor.cpp:
* ace/TLI_Connector.h:
* ace/TLI_Connector.inl:
* ace/TP_Reactor.cpp:
* ace/TSS_T.inl:
* ace/TSS_T.cpp:
* ace/Task_Ex_T.cpp:
* ace/Task_T.cpp:
* ace/Thread_Manager.h:
* ace/Thread_Manager.cpp:
* ace/Thread_Mutex.cpp:
* ace/Throughput_Stats.cpp:
* ace/Timeprobe_T.cpp:
* ace/Timer_Hash_T.cpp:
* ace/Timer_Heap_T.cpp:
* ace/Timer_List_T.cpp:
* ace/Timer_Queue_Adapters.cpp:
* ace/Timer_Queue_Iterator.cpp:
* ace/Timer_Queue_T.cpp:
* ace/Timer_Wheel_T.cpp:
* ace/Token.cpp:
* ace/Token_Collection.cpp:
* ace/Token_Invariants.cpp:
* ace/Token_Manager.cpp:
* ace/Token_Request_Reply.cpp:
* ace/Trace.cpp:
* ace/Typed_SV_Message_Queue.cpp:
* ace/UNIX_Addr.h:
* ace/UPIPE_Acceptor.cpp:
* ace/UPIPE_Connector.inl:
* ace/UPIPE_Connector.cpp:
* ace/UUID.cpp:
* ace/Unbounded_Queue.cpp:
* ace/Unbounded_Set.cpp:
* ace/Unbounded_Set_Ex.cpp:
* ace/WFMO_Reactor.inl:
* ace/WFMO_Reactor.cpp:
* ace/WIN32_Asynch_IO.cpp:
* ace/WIN32_Proactor.cpp:
* ace/XML_Utils/XML_Error_Handler.cpp:
* ace/XTI_ATM_Mcast.inl:
Change the use of ACE_ERROR/ACE_DEBUG macros inside ace to ACELIB_ERROR/ACELIB_DEBUG.
Thu Apr 11 15:20:21 UTC 2013 Huang-Ming Huang <huangh@ociweb.com>
* ace/Log_Category.h:
* ace/Log_Category.inl:
* ace/Log_Category.cpp:
* ace/Log_Msg.h:
* ace/Log_Msg.cpp:
* ace/Log_Record.h:
* ace/Log_Record.inl:
* ace/Log_Record.cpp:
* ace/ace.mpc:
* tests/Log_Msg_Test.cpp:
Added ACE_Log_Category class so that log messages can be separated into
different categories and be enabled/disabled independently.
Thu Apr 11 11:13:34 UTC 2013 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* README: Updated this file, which was horribly out of date!
Sun Apr 7 00:20:49 UTC 2013 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* ace/Global_Macros.h: Added documentation for the arguments to
the ACE_GUARD_XXX macros. Thanks to Neil Youngman <ny at
youngman dot org dot uk> for contributing this.
Thu Apr 4 16:29:07 UTC 2013 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* examples/Connection/non_blocking/CPP-acceptor.{h,cpp},
examples/Connection/non_blocking/CPP-connector.{h,cpp}: Replaced
the use of macros with actual traits since they should be
available on all C++ compilers we support now.
Thu Apr 4 18:41:36 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* debian/ace.dsc:
* debian/debian.changelog:
* debian/debian.control:
Updated for new release, thanks to Michael Ganz <michael_ganz at t-online dot de>
for reporting this
Wed Apr 3 13:41:19 UTC 2013 Adam Mitz <mitza@ociweb.com>
* tests/Manual_Event_Test.cpp:
Corrected time value to actually be 200 msec as noted in the comment.
Wed Apr 3 08:13:00 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/auto_run_tests.pl:
* tests/run_test.pl:
Set some additional variables that can be used with coverity
Tue Apr 2 09:07:13 UTC 2013 Martin Corino <mcorino@remedy.nl>
* ace/OS_NS_stdio.h:
Fix missing intptr_t declaration on QNX.
Sat Mar 30 18:11:06 UTC 2013 Martin Corino <mcorino@remedy.nl>
* examples/C++NPv1/Reactive_Logging_Server_Ex.h:
Fixed truncating cast error.
Sat Mar 30 09:44:50 UTC 2013 Martin Corino <mcorino@remedy.nl>
* ace/config-win32-mingw64.h:
Minor comment update.
Sat Mar 30 09:30:10 UTC 2013 Martin Corino <mcorino@remedy.nl>
* include/makeinclude/platform_mingw32.GNU:
Added support for latest GCC from MinGW64.
* ace/config-win32.h:
* ace/config-win32-mingw.h:
Split support for MinGW64 variants of MinGW compilers
into separate files because of tricky differences between
MinGW32 and MinGW64 APIs.
* ace/config-win32-mingw64.h:
Added separate support file for MinGW64 compilers (both
32 and 64 bit).
* ace/CDR_Base.inl:
More standardized use of ACE_LACKS_INLINE_ASSEMBLY for benefit
of MinGW64 64bit compiler.
* ace/Functor_T.h:
* ace/Functor_T.inl:
* ace/OS_NS_stdio.h:
* ace/OS_NS_stdio.inl:
* ace/OS_NS_sys_stat.inl:
* ace/Process.cpp:
* ace/SV_Semaphore_Simple.cpp:
* ace/Timer_Wheel_T.cpp:
* apps/Gateway/Gateway/Gateway.cpp:
* examples/C++NPv1/Reactive_Logging_Server.h:
* examples/C++NPv1/Reactive_Logging_Server_Ex.h:
* examples/IPC_SAP/SOCK_SAP/CPP-inserver.cpp:
* examples/Reactor/Misc/test_early_timeouts.cpp:
* performance-tests/SCTP/SOCK_STREAM_srv.cpp:
* tests/Map_Test.h:
* tests/Process_Env_Test.cpp:
* tests/Thread_Timer_Queue_Adapter_Test.cpp:
All kinds of minor updates and corrections to silence
warnings and errors relating to either 64bit Windows or
the very latest GCC (4.8.0). Mostly precision loss and
truncating casts.
Thu Mar 28 08:52:43 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* docs/ACE-bug-process.html:
Fixed typo
Mon Mar 25 21:03:54 UTC 2013 Abdullah Sowayan <sowayan@gmail.com>
* include/makeinclude/platform_macosx_iOS.GNU:
Minor updates to fix iOS builds.
Fri Mar 22 02:58:06 UTC 2013 Abdullah Sowayan <sowayan@gmail.com>
* include/makeinclude/platform_macosx_iOS.GNU:
Minor updates to fix iOS builds.
Thu Mar 14 12:44:10 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/make_release.py:
Exclude new workspace
Thu Mar 14 10:08:55 UTC 2013 Marcel Smit <msmit@remedy.nl>
* bin/fuzz.pl:
Checking the last part of the given @file entry, instead of
the filename only.
Thu Mar 14 08:38:57 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* ChangeLog:
* NEWS:
* bin/diff-builds-and-group-fixed-tests-only.sh:
* docs/Download.html:
* docs/bczar/bczar.html:
* etc/index.html:
Making new x.1.8 public available
Thu Mar 14 09:04:46 CET 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* ACE version 6.1.8 released.
Thu Mar 7 19:17:15 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* ace/OS_NS_Thread.cpp:
QNX also only supports system scope for threads.
Fri Mar 1 11:21:33 UTC 2013 Martin Corino <mcorino@remedy.nl>
* bin/auto_run_tests.pl:
Fix for problems with explicit test root and test folders
that are also available in default roots.
Thu Feb 28 19:45:03 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Compiler_Features_19_Test.cpp:
* tests/run_test.lst:
* tests/tests.mpc:
Added C++11 test for template alias support
Wed Feb 27 13:54:27 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Wild_Match_Test.cpp:
Extended this test to get 100% coverage for ACE::wild_match, resolves
Coverity 753117
Tue Feb 26 23:07:17 UTC 2013 Steve Huston <shuston@riverace.com>
* include/makeinclude/platform_g++_common.GNU: When turning on
no-strict-aliasing, add the option to FLAGS_C_CC instead of
CCFLAGS so that both C and C++ compilers get it.
Fri Feb 22 14:29:39 UTC 2013 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* ace/Message_Queue_Vx.inl (defined): Added a fix for RTP. Thanks
to Thomas dot Lockhart at jpl dot nasa dot gov for contributing this.
Mon Feb 25 08:09:24 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Sock_Connect.cpp:
Don't use MAX_IF as constant, is a system defined constant on
some operating systems
* tests/OS_Test.cpp:
Call compiler version methods, should fix some Coverity test
coverage issues
Mon Feb 18 01:57:31 UTC 2013 Kevin Stanley <stanleyk@ociweb.com>
* ace/SSL/SSL_Context.cpp:
Removed what appeared to be extraneous characters '3D'
from cut and paste.
Sun Feb 17 03:37:42 UTC 2013 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* ace/SSL/SSL_Context.h (ACE_SSL_Context): Added a missing comma.
Thanks to Johnny for reporting this.
Sat Feb 16 21:53:26 UTC 2013 Kevin Stanley <stanleyk@ociweb.com>
* ace/SSL/SSL_Context.h:
Fixed missing ',' in enumerated type value.
Sat Feb 16 14:42:54 UTC 2013 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* examples/C++NPv2/AIO_Client_Logging_Daemon.cpp: Moved the definition of
ACE_FACTORY_DEFINE (AIO_CLD, AIO_Client_Logging_Daemon)
to the right place in the #ifdefs. Thanks to Journeyer J. Joh
<oosaprogrammer at gmail dot com> for reporting this.
Sat Feb 16 14:34:30 UTC 2013 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* ace/SSL/SSL_Context.cpp (ACE_SSL_Context::set_mode),
* ace/SSL/SSL_Context.h (ACE_SSL_Context): Added support for TLS
1.1 and 1.2. Thanks to pkow88776 at onet dot pl for
contributing this.
Wed Feb 13 14:29:09 UTC 2013 Adam Mitz <mitza@ociweb.com>
* include/makeinclude/platform_vxworks6.7.GNU:
Removed workaround for RTP shared libraries. With the current
updates to VxWorks 6.7, the workaround is not only not needed,
but it creates RTP executables that will not run on the target.
Fri Feb 8 19:03:33 UTC 2013 Phillip LaBanca <labancap@ociweb.com>
* ace/Message_Block.cpp:
Fix Coverity Issue 972919 - Fixed possible dereference
of null pointer
Fri Feb 8 13:26:17 UTC 2013 Kevin Stanley <stanleyk@ociweb.com>
* ace/CDR_Stream.h:
Fix Coverity Issue 972947 - Non virtual destructor. Made
TAO_InputCDR destructor virtual.
Wed Feb 6 01:55:37 UTC 2013 Kevin Stanley <stanleyk@ociweb.com>
* ace/Message_Block.cpp:
Fixed fuzz error. Return 0 instead of NULL.
Tue Feb 5 21:04:17 UTC 2013 "Kevin Stanley" <stanleyk@ociweb.com>
Several new features and bug fixes captured in Bugzilla 4091, 4092, 4093,
4094, 4095, and 4096. Also includes Bugzilla 3247. Specific details of the
changes described below through the tag at the end bookmarked with:
***** OCI_Reliability_Enhancements Changes
Tue Feb 5 17:01:48 UTC 2013 "Kevin Stanley" <stanleyk@ociweb.com>
* ace/Auto_Event.h:
* bin/valgrind.supp:
* protocols/ace/INet/inet.mpc:
* protocols/examples/INet:
* tests/CDR_Test.cpp:
* protocols/ace/INet/FTP_Simple_exec.cpp:
* protocols/ace/INet/HTTP_Simple_exec.cpp:
Merged changes from trunk in preparation for merge. The
above files had changes.
Thu Jan 31 22:39:53 UTC 2013 Phillip LaBanca <labancap@ociweb.com>
* ace/Message_Block.cpp:
Fixed problem with allocator in clone and duplicate
* tests/Message_Block_Large_Copy_Test.cpp:
Added reference count output
Thu Jan 31 18:41:26 UTC 2013 Phillip LaBanca <labancap@ociweb.com>
* tests/Message_Block_Large_Copy_Test.cpp:
Corrected test for scoreboard
Thu Jan 31 14:38:03 UTC 2013 "Kevin Stanley" <stanleyk@ociweb.com>
* tests/Message_Block_Large_Copy_Test.cpp:
Fixed another error in allocation missed the first time.
Thu Jan 31 14:31:17 UTC 2013 Kevin Stanley <stanleyk@ociweb.com>
* tests/Message_Block_Large_Copy_Test.cpp:
Fixed error in allocation of character array.
Wed Jan 30 23:54:14 UTC 2013 Phillip LaBanca <labancap@ociweb.com>
* ace/Message_Block.cpp:
Applied bug 3247 duplicate patch that replaced recursion with
iteration to support the copying of large message blocks.
* tests/Message_Block_Large_Copy_Test.cpp:
* tests/run_test.lst:
* tests/tests.mpc:
Created test to cover the cloning and duplication of
large Message_Blocks.
Tue Jan 29 15:15:09 UTC 2013 "Kevin Stanley" <stanleyk@ociweb.com>
* include/makeinclude/platform_sunos5_g++.GNU:
Merged trunk into branch.
Mon Jan 28 16:13:07 UTC 2013 "Kevin Stanley" <stanleyk@ociweb.com>
* ace/config-macosx-lion.h:
* ace/config-macosx-mountainlion.h:
* ace/config-macosx-snowleopard.h:
* examples/Shared_Memory/test_MM.cpp:
* examples/Shared_Memory/test_SV.cpp:
* include/makeinclude/platform_macosx_mountainlion.GNU:
* ace/config-macosx-mountain-lion.h:
* include/makeinclude/platform_macosx_mountain_lion.GNU:
Merged trunk into branch. The above files were changed in the
trunk.
Wed Dec 19 17:52:25 UTC 2012 Phil Mesnier <mesnier_p@ociweb.com>
* ace/Mem_Map.inl:
Fix a warning about signed/unsigned mix.
* include/makeinclude/platform_clang_common.GNU:
Increase the warning level used by the CLang++ compiler to show all warnings
Mon Dec 17 14:39:07 UTC 2012 Brian Johnson <johnsonb@ociweb.com>
* ACEXML/common/FileCharStream.cpp:
Fixed to not close the infile_ if it was passed to the
FileCharStream.
Fri Dec 14 17:31:22 UTC 2012 Brian Johnson <johnsonb@ociweb.com>
* ACEXML/common/FileCharStream.h:
* ACEXML/common/FileCharStream.cpp:
Added interface to accept an already open FILE stream.
Mon Oct 15 18:26:57 UTC 2012 Phil Mesnier <mesnier_p@ociweb.com>
* OCI_RE_ChangeLog:
Created change log for the OCI Reliability Enhancements branch
***** OCI_Reliability_Enhancements Changes
Mon Feb 4 08:58:35 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* protocols/ace/INet/inet.mpc:
* protocols/ace/INet/FTP_Simple_exec.cpp:
* protocols/ace/INet/HTTP_Simple_exec.cpp:
* protocols/examples/INet/FTP_Simple_exec.cpp:
* protocols/examples/INet/HTTP_Simple_exec.cpp:
* protocols/examples/INet/inet.mpc:
Moved INet examples out of the ace/INet directory and into
a new example directory
Sat Feb 2 19:08:18 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Auto_Event.h:
Layout changes
Thu Jan 31 19:21:31 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/CDR_Test.cpp:
Test CDR_Size::write_boolean_array, according to Coverity
this method was not tested
Wed Jan 30 11:58:00 UTC 2013 Simon Massey <simon dot massey at prismtech dot com>
* bin/valgrind.supp:
Add a supression for a faulty system zlib.
Mon Jan 28 23:33:25 UTC 2013 Adam Mitz <mitza@ociweb.com>
* include/makeinclude/platform_sunos5_g++.GNU:
Define _POSIX_PTHREAD_SEMANTICS is threads=1,
making this config similar to SunCC.
Mon Jan 28 07:55:27 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-macosx-mountainlion.h:
* ace/config-macosx-mountain-lion.h:
* include/makeinclude/platform_macosx_mountainlion.GNU:
* include/makeinclude/platform_macosx_mountain_lion.GNU:
Renamed mountain-lion to mountainlion to simplify packaging
Tue Jan 22 12:28:19 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/CDR_Size.h:
Doxygen changs
* tests/FlReactor_Test.cpp:
Unicode fixes
Mon Jan 21 08:24:11 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* html/Stats/index.shtml:
Corrected link
Thu Jan 17 12:25:40 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* debian/debian.control:
Fixed depencency on libssl-dev, thanks to Michael Ganz
<michael_ganz at t-online dot de> for reporting this
Thu Jan 17 12:23:42 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Sig_Handler.cpp:
Layout changes
* docs/bczar/bczar.html:
Updated packages
* html/Stats/index.shtml:
Added another page
Fri Jan 4 21:52:14 UTC 2013 Adam Mitz <mitza@ociweb.com>
* include/makeinclude/platform_linux_clang.GNU:
Added clang command-line option required to build TAO.
Fri Jan 4 12:11:12 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* rpmbuild/ace-tao-init-suse/init.d/tao-cosconcurrency:
* rpmbuild/ace-tao-init-suse/init.d/tao-cosevent:
* rpmbuild/ace-tao-init-suse/init.d/tao-cosnaming:
* rpmbuild/ace-tao-init-suse/init.d/tao-cosnotification:
* rpmbuild/ace-tao-init-suse/init.d/tao-costrading:
* rpmbuild/ace-tao-init-suse/init.d/tao-rtevent:
Add $network to Required-Start line, thanks to John Fletcher
<john dot fletcher at rd dot bbc dot co dot uk> for reporting
this.
Thu Jan 3 22:53:44 UTC 2013 Steve Huston <shuston@riverace.com>
* ace/OS_NS_netdb.cpp (ACE_OS::getmacaddress): On Linux, search for
an interface to get the MAC address for; don't assume eth0 is
present and usable.
* tests/Bug_3744_Regression_Test.cpp: Fix ACE_LOG_MSG output.
Wed Jan 2 19:19:58 UTC 2013 Thomas Girard <thomas.g.girard@free.fr>
* ace/Service_Config.h: ACE_DYNAMIC_VERSIONED_SERVICE_DIRECTIVE
fix when ACE_VERSIONED_SO=2. Because of '.' in the version,
addition of prefix ACE_DLL_PREDIX and suffix ACE_DLL_SUFFIX
is skipped, preventing ACE_DYNAMIC_VERSIONED_SERVICE_DIRECTIVE
from working when ACE+TAO is built with versioned_so=2.
Thu Dec 27 09:18:39 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* NEWS:
* bin/diff-builds-and-group-fixed-tests-only.sh:
* docs/Download.html:
* docs/bczar/bczar.html:
* etc/index.html:
Updated in preparation of next release
Thu Dec 27 10:00:49 CET 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* ACE version 6.1.7 released.
Fri Dec 21 09:22:41 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* protocols/tests/HTBP/Reactor_Tests/run_test.pl:
* protocols/tests/HTBP/Send_Large_Msg/run_test.pl:
* protocols/tests/HTBP/Send_Recv_Tests/run_test.pl:
* protocols/tests/HTBP/ping/run_test.pl:
Check return value of spawn, if it fails directly exit the
test run
Wed Dec 19 14:46:24 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_cegcc.GNU:
* include/makeinclude/platform_g++_common.GNU:
* include/makeinclude/platform_rtems.x_g++.GNU:
* include/makeinclude/platform_vxworks6.2.GNU:
* include/makeinclude/platform_vxworks6.3.GNU:
Install tao_idl3_to_idl2 and tao_idl3_to_xmi into ACE_ROOT/bin
to handle cross compilation in a flat layout more easily, this
way we can use the same approach as tao_idl does
Mon Dec 17 20:53:22 UTC 2012 Adam Mitz <mitza@ociweb.com>
* ace/Message_Queue_Vx.inl:
Updated for VxWorks 6.9 32-bit kernel mode.
Mon Dec 17 18:26:27 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Acceptor.cpp:
Fixed warning
Mon Dec 17 13:40:00 UTC 2012 Simon Massey <simon dot massey at prismtech dot com>
* ace/SOCK_Dgram.cpp: ACE_SOCK_Dgram::make_multicast_ifaddr ()
Uncovered due to TAO UIPMC option -ORBListenOnAll 1 being
enabled. The SOCK_Dgram_Mcast.cpp ACE_SOCK_Dgram_Mcast::subscribe_ifs()
call iterates through the list of IP addresses for all interfaces
NOT the list of Interface Names. This works only for windows and newer
linuxes (where they are automatically converted into interface names).
Older linuxes do not and expect the actual interface names (eg. "Eth0")
to be given. This fix allows both forms to be given on older linuxes as well.
(Test TAO/orbscvc/tests/Miop/McastHello updated to enable -ORBListenOnAll 1.)
Mon Dec 17 09:59:45 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_Thread.inl:
* ace/OS_NS_sys_shm.cpp:
* ace/OS_NS_sys_socket.cpp:
* ace/OS_NS_sys_stat.cpp:
* ace/OS_NS_sys_uio.cpp:
Zapped empty lines
Mon Dec 17 09:31:49 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Acceptor.cpp:
Fixed one-shot acceptor, could call null ptr
* ace/Throughput_Stats.cpp:
Simplified code
* protocols/tests/RMCast/Receiver.cpp:
Fixed incorrect argument to memcpy
Fri Dec 14 19:36:20 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* docs/bczar/bczar.html:
Added patch
Sun Dec 9 14:38:27 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/POSIX_Proactor.cpp:
* ace/Parse_Node.cpp:
* ace/SV_Message_Queue.inl:
* ace/SV_Message_Queue.cpp:
Fixed coverity errors
Fri Dec 7 20:14:27 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_g++_common.GNU:
Improved support for gcov=1
Fri Dec 7 13:06:07 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Strategies_T.cpp:
Check return value of enable (ACE_NONBLOCK), fixes Coverity
reported errors
Thu Nov 29 15:08:26 UTC 2012 Steve Huston <shuston@riverace.com>
* ace/ACE.cpp (handle_timed_complete): Adapt to an occasionally seen
scenario where only the POLLERR bit is set on a failed connect.
This is for the poll() case, not select().
Thu Nov 29 10:31:05 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/CDR_Stream.cpp:
Removed another occurance of arm handling here, gets handled
at a lower layer already
Thu Nov 29 10:10:56 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Service_Config.h:
Fixed compile errors in xml builds
Thu Nov 29 08:49:39 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/CDR_Stream.cpp:
Removed arm handling here, gets handled at a lower layer
already
Wed Nov 28 09:34:00 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* debian/libace-dev.install:
rle has no install files
Wed Nov 28 08:55:49 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* debian/ace.dsc:
* debian/debian.changelog: