summaryrefslogtreecommitdiff
path: root/ACE
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Removed some empty linesJohnny Willemsen2019-03-061-2/+0
| | | | | | | | | | | | * ACE/ace/Sig_Handler.cpp:
* | | Removed empty linesJohnny Willemsen2019-03-0621-59/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * ACE/tests/Process_Manual_Event_Test.cpp: * ACE/tests/Process_Mutex_Test.cpp: * ACE/tests/Process_Semaphore_Test.cpp: * ACE/tests/Process_Strategy_Test.cpp: * ACE/tests/Process_Test.cpp: * ACE/tests/RB_Tree_Test.cpp: * ACE/tests/Reactor_Dispatch_Order_Test.cpp: * ACE/tests/Reactor_Dispatch_Order_Test_Dev_Poll.cpp: * ACE/tests/Reactor_Exceptions_Test.cpp: * ACE/tests/Reactor_Fairness_Test.cpp: * ACE/tests/Reactor_Notify_Test.cpp: * ACE/tests/Reactor_Performance_Test.cpp: * ACE/tests/Reactor_Registration_Test.cpp: * ACE/tests/Reactor_Remove_Resume_Test.cpp: * ACE/tests/Reactor_Timer_Test.cpp: * ACE/tests/Reactors_Test.cpp: * ACE/tests/Reader_Writer_Test.cpp: * ACE/tests/Recursive_Condition_Bug_Test.cpp: * ACE/tests/Recursive_Condition_Test.cpp: * ACE/tests/Refcounted_Auto_Ptr_Test.cpp: * ACE/tests/Reverse_Lock_Test.cpp:
* | | Fix c++11 auto_ptr warningJohnny Willemsen2019-03-061-0/+4
| | | | | | | | | | | | * ACE/tests/Task_Ex_Test.cpp:
* | | Merge pull request #860 from jwillemsen/jwi-cpp11warningsJohnny Willemsen2019-03-067-7/+30
|\ \ \ | | | | | | | | Fixed c++11 given warnings
| * | | Fixed c++11 given warningsJohnny Willemsen2019-03-057-7/+30
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | * ACE/ace/Message_Queue_T.cpp: * ACE/examples/APG/Active_Objects/AO.cpp: * ACE/examples/APG/Active_Objects/AO2.cpp: * ACE/examples/Threads/future1.cpp: * ACE/examples/Threads/future2.cpp: * ACE/performance-tests/TCP/tcp_test.cpp: * ACE/performance-tests/UDP/udp_test.cpp:
* | | Merge pull request #853 from jrw972/sock-dgram-safetyAdam Mitz2019-03-051-0/+9
|\ \ \ | |/ / |/| | Fix SOCK_Dgram_Test on safety profile
| * | Problem: SOCK_Dgram_Test fails on safety profileJustin R. Wilson2019-03-011-0/+9
| | | | | | | | | | | | Solution: Fall back to normal receive when testing with safety profile.
* | | Fixed statement may fall through warningJohnny Willemsen2019-03-041-1/+1
| | | | | | | | | | | | * ACE/ace/OS_NS_unistd.cpp:
* | | Fix C++11 related warnings given by newer gcc versionsJohnny Willemsen2019-03-045-5/+21
|/ / | | | | | | | | | | | | | | * ACE/netsvcs/lib/Client_Logging_Handler.cpp: * ACE/netsvcs/lib/Name_Handler.cpp: * ACE/netsvcs/lib/Server_Logging_Handler_T.cpp: * ACE/netsvcs/lib/TS_Clerk_Handler.cpp: * ACE/netsvcs/lib/TS_Server_Handler.cpp:
* | Merge pull request #834 from iguessthislldo/igtd/androidAdam Mitz2019-02-287-10/+181
|\ \ | |/ |/| Use Logcat on Android
| * Log_Msg: Allow flag macros to be overridenFred Hornsey2019-02-133-10/+18
| |
| * Log_Msg: Renable STDERR on AndroidFred Hornsey2019-02-132-5/+4
| |
| * Update ACE/NEWSFred Hornsey2019-02-121-0/+6
| |
| * Log_Msg: Fix Enable By Default and CleanupFred Hornsey2019-02-122-6/+13
| |
| * Use Logcat on AndroidFred Hornsey2019-02-116-7/+158
| | | | | | | | | | | | | | | | On Android stdout and stderr are discarded by default. It's possible to workaround this but it's not pretty. The best solution is to use Android's logging system, Logcat. I've added an ACE_Log_Msg_Backend, ACE_Log_Msg_Android_Logcat, and set it to be the default output on Android.
* | Merge branch 'master' of https://github.com/DOCGroup/ACE_TAOJohnny Willemsen2019-02-282-7/+23
|\ \
| * \ Merge pull request #849 from jwillemsen/jwi-azurewcharJohnny Willemsen2019-02-273-6/+0
| |\ \ | | | | | | | | Add uses_wchar configuration to Azure Devops
| * | | Initialise pointer with zeroJohnny Willemsen2019-02-261-1/+1
| | | |
| * | | Fix ACE_Sbrk_Memory_Pool compilation error when ACE_HAS_ALLOC_HOOKS is defined.Like Ma2019-02-261-1/+1
| | | |
| * | | Fix wchar_t strnew and strdup.Like Ma2019-02-261-5/+21
| | | |
* | | | Documentation updatesJohnny Willemsen2019-02-281-78/+50
| |/ / |/| |
* | | Merge branch 'master' of https://github.com/DOCGroup/ACE_TAOJohnny Willemsen2019-02-263-6/+8
|\ \ \ | |/ /
| * | Cast iovec.iov_base to char* to handle certain platformsJustin R. Wilson2019-02-251-1/+2
| | |
| * | Fix missing return valueJustin R. Wilson2019-02-251-1/+1
| | |
| * | Address unused argument on MinGWJustin R. Wilson2019-02-251-0/+2
| | |
| * | Free log record buffer before allocating new buffer.Like Ma2019-02-251-4/+3
| | |
* | | Merge branch 'master' of https://github.com/DOCGroup/ACE_TAOJohnny Willemsen2019-02-257-119/+266
|\ \ \ | |/ /
| * | Refine ACE_INET_Addr doc.Like Ma2019-02-251-14/+24
| | |
| * | Merge pull request #842 from jrw972/masterAdam Mitz2019-02-224-11/+155
| |\ \ | | | | | | | | Provide option for local address for SOCK_Dgram recvmsg
| | * | Provide option for local address for SOCK_Dgram recvmsgJustin R. Wilson2019-02-224-11/+155
| | | |
| * | | Refactor ACE_DLL_Handle::openLike Ma2019-02-222-95/+87
| |/ /
| * | Fix AIX dlopen debug log.Like Ma2019-02-201-1/+2
| | |
* | | Merge branch 'master' of https://github.com/DOCGroup/ACE_TAOJohnny Willemsen2019-02-199-51/+97
|\ \ \ | |/ /
| * | Fix compile error for MacOS.Martin Corino2019-02-191-1/+1
| | | | | | | | | | | | * ACE/ace/Timer_Queue_Adapters.h:
| * | Fix spurious wakeups due to incomplete timepolicy handling.Martin Corino2019-02-193-1/+10
| | | | | | | | | | | | | | | | | | * ACE/ace/Timer_Queue_Adapters.cpp: * ACE/ace/Timer_Queue_Adapters.h: * ACE/ace/Timer_Queue_T.h:
| * | Merge pull request #820 from likema/feature/dll-manager-buffer-overflowJohnny Willemsen2019-02-181-5/+24
| |\ \ | | | | | | | | Fix ACE_DLL_Manager potential buffer overflow.
| | * | Check path length before copying.Like Ma2019-02-061-4/+8
| | | |
| | * | Fix ACE_DLL_Handle potential buffer overflow.Like Ma2019-02-051-5/+20
| | | |
| * | | Add ipv6_only to ACE_SSL_SOCK_Acceptor.Like Ma2019-02-182-9/+18
| | | |
| * | | Support instantiating ACE_Arg_Shifter_T<char> in wchar builds.Adam Mitz2019-02-133-36/+45
| | |/ | |/| | | | | | | Cleaned up some comments and style guidelines violations.
* | | Removed some empty linesJohnny Willemsen2019-02-193-6/+0
|/ / | | | | | | | | | | * ACE/ace/Condition_Recursive_Thread_Mutex.h: * ACE/ace/Timer_Queue_T.h: * ACE/ace/Timer_Wheel_T.h:
* | Add missing include of crtdbg.h, isn't pulled in through Global_Macros anymoreJohnny Willemsen2019-02-081-1/+2
| | | | | | | | * ACE/ace/Object_Manager.cpp:
* | Merge pull request #832 from jwillemsen/jwi-constimprovementsJohnny Willemsen2019-02-072-25/+25
|\ \ | | | | | | Add missing const to several places
| * | Add missing const to several placesJohnny Willemsen2019-02-072-25/+25
| | |
* | | Reduced scope of tss_log_msg variableJohnny Willemsen2019-02-071-2/+1
| | | | | | | | | | | | * ACE/ace/Log_Msg.cpp:
* | | Add missing explicitJohnny Willemsen2019-02-071-1/+1
| | | | | | | | | | | | * ACE/ace/OS_NS_Thread.cpp:
* | | Removed ACE_NO_HEAP_CHECK macro because it is broken, see issue #733Johnny Willemsen2019-02-064-102/+31
|/ / | | | | | | | | | | | | * ACE/ace/Global_Macros.h: * ACE/ace/Log_Msg.cpp: * ACE/ace/OS_NS_Thread.cpp: * ACE/ace/Service_Gestalt.cpp:
* | Updated link to MPC on githubJohnny Willemsen2019-02-051-5/+1
| | | | | | | | * ACE/bin/MakeProjectCreator/README:
* | Configuration files for Visual Studio 2019Johnny Willemsen2019-02-052-0/+34
| | | | | | | | | | | | * ACE/bin/MakeProjectCreator/config/vs2019.features: * ACE/bin/MakeProjectCreator/config/vs2019nmake.mpb: Added.
* | Starter configuration file for Visual C++ 14.2 as going to be shipped as ↵Johnny Willemsen2019-02-052-1/+32
| | | | | | | | | | | | | | | | | | part of Visual Studio 2019 * ACE/ace/config-win32-msvc-142.h: Added. * ACE/ace/config-win32-msvc.h: