| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
will generate a changelog for each release
* ACE/ChangeLog -> ACE/ChangeLogs/ChangeLog-2014b:
* CIAO/ChangeLog -> CIAO/ChangeLogs/ChangeLog-2014b:
* DAnCE/ChangeLog -> DAnCE/ChangeLogs/ChangeLog-2014b:
* TAO/ChangeLog -> TAO/ChangeLogs/ChangeLog-2014b:
Moved.
|
|
|
|
|
|
|
|
| |
* ACE-INSTALL.html:
Fixed cygwin setup instructions as reported by
Koh Onishi <k_onishi at mtj dot biglobe dot ne dot jp> in
bugzilla 4066
|
| |
|
|
|
|
|
|
| |
* ace/Abstract_Timer_Queue.h:
Doxygen fix
|
| |
|
|
|
|
|
|
|
| |
* bin/MakeProjectCreator/config/vc14nmake.mpb:
Disable warnings 4456, 4458, and 4459 with Visual Studio 2015
when we are using nmake
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* NEWS:
* docs/Download.html:
* docs/bczar/bczar.html:
* etc/index.html:
Make 6.3.0 public
* bin/MakeProjectCreator/config/vc12.features:
* bin/MakeProjectCreator/config/vc14.features:
Missing features files
* bin/MakeProjectCreator/config/vc_warnings.mpb:
Disable warnings 4456, 4458, and 4459 with Visual Studio 2015
|
|
|
|
| |
<jwillemsen@remedy.nl>
|
| |
|
|
|
|
|
|
|
| |
* ace/CDR_Stream.h:
Doxygen fixes
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* bin/MakeProjectCreator/config/vc_warnings.mpb:
Visual Studio 2013 Update 3 gives a lot of warnings on
deprecated
ascii winsock calls but they just work, so no need to change
our
code. Added new feature vc_avoid_winsock_warnings which is
enabled
by default, this adds _WINSOCK_DEPRECATED_NO_WARNINGS to the
compiler falgs. If you want to see all warnings, set
vc_avoid_winsock_warnings to 0 in your default.features file
before
generatin the project files
|
|
|
|
|
|
|
|
|
|
|
|
| |
* etc/ace_inet.doxygen:
* etc/ace_qos.doxygen:
* etc/ace_rmcast.doxygen:
* etc/ace_ssl.doxygen:
* etc/acexml.doxygen:
Set UML_LOOK to NO, with UML look all members/methods are
shown
in the diagrams making them unusable
|
| |
|
|
|
|
|
|
| |
* rpmbuild/ace-tao.spec:
No need for lsb
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
* tests/Bug_4189_Regression_Test.cpp:
Use PF_INET, that is the default argument of
ACE_SOCK_Dgram_Bcast
|
|
|
|
|
|
|
|
|
|
| |
* ace/config-win32-common.h:
Don't define SO_REUSEPORT when it is not defined, the code
that uses this as argument to call ACE_OS::setsockopt only
works
when this has been defined. Defining it here to a dummy value
causes us to call the Windows API with an invalid argument
|
|
|
|
|
|
|
|
| |
* ace/config-win32-common.h:
* ace/os_include/sys/os_types.h:
Introduce new ACE_LACKS_PID_T which is set on Windows, but
not with MinGW
|
|
|
|
|
|
|
|
|
|
|
| |
* ace/OS_NS_sys_socket.inl:
Removed the ignore of SO_REUSEADDR on windows, this is needed
for ACE_SOCK_Dgram_Bcast to work, see bugzilla 4189. Also
removed
the Windows specific change of SO_REUSEPORT to SO_REUSEADDR,
this
are different flags that we should not merge at this level.
|
|
|
|
|
|
|
|
|
|
| |
* tests/Bug_4189_Regression_Test.cpp:
* tests/run_test.lst:
* tests/tests.mpc:
New test for bugzilla 4189, on Windows it is not possible
at this moment to open a ACE_SOCK_Dgram_Bcast multiple times
on the same port, even when reuse_addr has been set to 1
|
| |
|
|
|
|
| |
* ace/ETCL/ETCL_l.cpp:
Scoreboard cleanup.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* ACEXML/common/XMLFilterImpl.h:
* ACEXML/common/XMLFilterImpl.cpp:
* ACEXML/parser/parser/Entity_Manager.h:
* ace/ETCL/ETCL_l.cpp:
* protocols/ace/RMCast/Flow.h:
* protocols/ace/RMCast/Flow.cpp:
* protocols/ace/RMCast/Reassemble.h:
* protocols/ace/RMCast/Reassemble.cpp:
* protocols/ace/TMCast/TransactionController.hpp:
Clean up unused member warnings identified by clang 6.0.
* bin/PerlACE/Process_Unix.pm:
increase the valgrind wait factor to accommodate slower machines.
|
| |
|
|
|
|
|
|
| |
* docs/bczar/bczar.html:
Added package for killall
|
| |
|
| |
|
| |
|
|
|
|
| |
<shuston@riverace.com>
|
|
|
|
|
|
| |
* include/makeinclude/platform_g++_common.GNU:
Add -Wnon-virtual-dtor to the default CCFLAGS
|
| |
|
| |
|
| |
|
|
|
|
| |
<jwillemsen@remedy.nl>
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* ace/Dev_Poll_Reactor.cpp:
* ace/Reactor.h:
* ace/Select_Reactor_T.cpp:
* ace/WFMO_Reactor.inl:
When using ACE_Event_Handler_var together with reference
counting it is easy to pass the var.handler() to the
cancel_timer() operation of the reactor to just cancel
all timers at shutdown. But, when the application specific
initialization fails which leads to the fact that the var
contains a nullptr, this leads to a crash. Updated all
cancel_timer operations to also check if a valid event
handler pointer has been passed. If not, we just return 0
* tests/MT_Reactor_Timer_Test.cpp:
Added test for use case mentioned above
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* bin/generate_doxygen.pl:
Use safe way to get an unique tmp file
* include/makeinclude/platform_linux_common.GNU:
Added support for detecting and using platform large file
flags
Thanks to Pau Garcia i Quiles <pgquiles at elpauer dot org>
for providing both patches
|
|
|
|
|
|
| |
* ace/Time_Value.cpp:
When using C++11 use std::abs
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* ASNMP/asnmp/asn1.cpp:
Use ACE_REGISTER
* ace/CDR_Base.h:
Add missing include for ACE_REGISTER
* contrib/minizip/unzip.c:
* contrib/minizip/zip.c:
Fix clang warnings
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* ace/Base_Thread_Adapter.h:
* ace/CDR_Base.inl:
* ace/CDR_Base.cpp:
* ace/ETCL/ETCL_l.cpp:
* ace/ETCL/ETCL_l.cpp.diff:
* ace/ETCL/ETCL_y.cpp:
* ace/ETCL/ETCL_y.cpp.diff:
* ace/Global_Macros.h:
* ace/Handle_Set.cpp:
* ace/OS_NS_stdlib.cpp:
* ace/OS_NS_string.cpp:
C++11 deprecated the register keyword, so introduce a new
ACE_REGISTER define which normall expands to register, but
to nothing with C++11
|
|
|
|
|
|
|
|
| |
* include/makeinclude/platform_linux_clang.GNU:
Added deprecated_declarations, default is 1 and than we just
let clang show all, with C++11 we set it to 0 to get rid of
them (if not set by the user)
|
|
|
|
|
|
|
|
|
| |
* include/makeinclude/platform_clang_common.GNU:
Looks this 'common' file is only used for MacOSX
* include/makeinclude/platform_linux_clang.GNU:
Small improvements to only set one C++ flavor
|
|
|
|
|
|
|
| |
* ace/Auto_IncDec_T.h:
Fixed compile error because ACE_Copy_Disabled was implicitly
pulled in before
|
|
|
|
|
|
|
| |
* netsvcs/lib/Log_Message_Receiver.h:
Fixed compile error because ACE_Copy_Disabled was implicitly
pulled in before
|
|
|
|
|
|
|
| |
* include/makeinclude/platform_clang_common.GNU:
Support c++11 as setting and add -Wno-deprecated at that
moment to the compiler flags
|