summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Added NEWS for PR936mitza-NEWS-657Adam Mitz2019-10-101-0/+3
|
* Merge pull request #969 from ORDIS-Co-Ltd/ARM_ARM64Johnny Willemsen2019-10-071-0/+16
|\ | | | | Extend Stack_Trace to support ARM/ARM64 on Windows
| * fixed Stack_Trace.cppBenjamin Oldenburg2019-10-071-0/+16
|/ | | | (cherry picked from commit f2e5a03abba643eb6da996c5db23ad51bc49b9df)
* Merge pull request #966 from jwillemsen/jwi-speclicenseJohnny Willemsen2019-10-031-1/+1
|\ | | | | Use DOC as license identifier as it is defined on https://spdx.org/li…
| * Use DOC as license identifier as it is defined on https://spdx.org/licenses/Johnny Willemsen2019-10-031-1/+1
| | | | | | | | * ACE/rpmbuild/ace-tao.spec:
* | Merge pull request #964 from jwillemsen/jwi-clang9workaroundJohnny Willemsen2019-09-265-4/+6
|\ \ | |/ |/| Document change in NEWS file and updates some links to use https
| * Use https linksJohnny Willemsen2019-09-264-4/+4
| | | | | | | | | | | | | | * TAO/PROBLEM-REPORT-FORM: * TAO/README: * TAO/TAO-INSTALL.html: * TAO/VERSION:
| * Document changesJohnny Willemsen2019-09-261-0/+2
| | | | | | | | * TAO/NEWS:
* | Merge pull request #962 from jwillemsen/jwi-clang9workaroundJohnny Willemsen2019-09-241-1/+1
|\ \ | |/ | | Workaround is still necessary with clang9
| * Workaround is still necessary with clang9Johnny Willemsen2019-09-241-1/+1
|/ | | | * ACE/tests/Compiler_Features_32_Test.cpp:
* Merge pull request #961 from jwillemsen/jwi-defaultcopyassignJohnny Willemsen2019-09-134-63/+38
|\ | | | | No need to generate a copy constructor, the compile will generate one…
| * Updated file headerJohnny Willemsen2019-09-131-26/+24
| | | | | | | | * TAO/tao/Object_KeyC.h:
| * No need to generate a copy constructor, the compile will generate one, fixes ↵Johnny Willemsen2019-09-134-37/+14
|/ | | | | | | | | warnings with gcc9. When we have C++11 we can use the =default to indicate that the compiler generates one * TAO/TAO_IDL/be/be_visitor_sequence/sequence_ch.cpp: * TAO/TAO_IDL/be/be_visitor_sequence/sequence_cs.cpp: * TAO/tao/Object_KeyC.cpp: * TAO/tao/Object_KeyC.h:
* Merge pull request #960 from likema/feature/proc-mgr-logJohnny Willemsen2019-09-121-1/+1
|\ | | | | Fix GetExitCodeProcess error log.
| * Fix GetExitCodeProcess error log.Like Ma2019-09-121-1/+1
|/
* Merge pull request #955 from jwillemsen/jwi-logprocessthreadJohnny Willemsen2019-09-021-3/+3
|\ | | | | Log process and thread id when we get an unhandled exception
| * Log process and thread id when we get an unhandled exception, should make it ↵Johnny Willemsen2019-08-301-3/+3
| | | | | | | | | | | | a little bit easier to determine what has failed * ACE/ace/Object_Manager.cpp:
* | Merge pull request #956 from jwillemsen/masterJohnny Willemsen2019-09-012-3/+3
|\ \ | | | | | | Doxygen change and use https link instead of http
| * | Doxygen changeJohnny Willemsen2019-08-301-1/+1
| |/ | | | | | | * ACE/ace/NT_Service.h:
| * t checkout masterJohnny Willemsen2019-08-301-10/+30
| |\ | |/ |/| | | Merge branch 'master' of https://github.com/DOCGroup/ACE_TAO
* | Merge pull request #953 from mitza-oci/masterAdam Mitz2019-08-281-1/+1
|\ \ | | | | | | Revert part of #943, whitespace is significant in the auto_run_tests output
| * | Revert part of #943, whitespace is significant in the auto_run_tests output, ↵Adam Mitz2019-08-281-1/+1
|/ / | | | | | | this is parsed by other scripts.
* | Merge pull request #943 from iguessthislldo/igtd/miscAdam Mitz2019-08-231-11/+31
|\ \ | | | | | | Get Correct Program Return Code in auto_run_tests.pl
| * | Fix auto_run_tests.pl for ace testsFred Hornsey2019-08-201-12/+14
| | |
| * | Use system() properly in auto_run_tests.plFred Hornsey2019-08-201-11/+29
| | |
| | * Link to https instead of httpJohnny Willemsen2019-08-221-2/+2
| |/ |/| | | | | * TAO/TAO_IDL/be/be_helper.cpp:
* | Merge pull request #949 from mgrojo/fragments_cleanup_strategy_optimizationJohnny Willemsen2019-08-221-4/+4
|\ \ | | | | | | Optimization: avoid invoking gettimeofday in each loop cycle
| * | Optimization: avoid invoking gettimeofday in each loop cyclemgrojo2019-08-211-4/+4
| | | | | | | | | | | | | | | | | | | | | Constants can be moved outside the loop so delay is calculated just one and gettimeofday is only called once for each invocation to cleanup (it is assumed that the difference in time for each loop cycle is irrelevant for the cleanup strategy).
* | | Merge pull request #945 from mgrojo/service_repository_optimizationJohnny Willemsen2019-08-221-12/+8
|\ \ \ | | | | | | | | Optimization: avoid nested iteration in ACE_Service_Repository::find_i
| * | | Optimization: avoid nested iteration in ACE_Service_Repository::find_imgrojo2019-08-211-12/+8
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | This method was performing two iterations: the first using an index, and the second in the call to this->service_array_.find, which uses an iterator over the Array_Map looking for the element with that index. This simplifies and optimizes this method by iterating for the element once using directly the map iterator.
* | | Merge pull request #948 from jwillemsen/jwi-selectownerJohnny Willemsen2019-08-221-2/+3
|\ \ \ | | | | | | | | Initialise owner_ member in the constructor and use false instead of …
| * | | Fixed compile errorJohnny Willemsen2019-08-211-1/+1
| | | |
| * | | Initialise owner_ member in the constructor and use false instead of 0 for boolJohnny Willemsen2019-08-211-2/+3
| | | | | | | | | | | | | | | | * ACE/ace/Select_Reactor_Base.inl:
* | | | Merge pull request #947 from jwillemsen/jwi-selectnotifyrenewboolJohnny Willemsen2019-08-214-9/+8
|\ \ \ \ | | | | | | | | | | Changed suppress_notify_renew flag from int to bool
| * | | | Changed suppress_notify_renew flag from int to boolJohnny Willemsen2019-08-214-9/+8
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | * ACE/ace/Select_Reactor_Base.h: * ACE/ace/Select_Reactor_Base.inl: * ACE/ace/Select_Reactor_T.cpp: * ACE/ace/TP_Reactor.cpp:
* | | | Merge pull request #946 from jwillemsen/jwi-devpollreactorownerboolJohnny Willemsen2019-08-214-15/+11
|\ \ \ \ | | | | | | | | | | Changed the owner flag of the dev poll reactor from int to bool
| * | | | Changed the owner flag of the dev poll reactor from int to boolJohnny Willemsen2019-08-214-15/+11
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | * ACE/ace/Dev_Poll_Reactor.cpp: * ACE/ace/Dev_Poll_Reactor.h: * ACE/ace/Dev_Poll_Reactor.inl: * ACE/ace/TP_Reactor.h:
* | | | Merge pull request #944 from jwillemsen/masterJohnny Willemsen2019-08-211-0/+2
|\ \ \ \ | |/ / / | | / / | |/ / |/| | List fix for glibc 2.30 and newer
| * | List fix for glibc 2.30 and newerJohnny Willemsen2019-08-211-0/+2
|/ / | | | | | | * ACE/NEWS:
* | Merge pull request #939 from saininav/masterJohnny Willemsen2019-08-211-1/+1
|\ \ | |/ |/| config-linux-common.h: fix glibc build failure
| * config-linux-common.h: fix glibc build failureNaveen Saini2019-08-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Recent glibc v2.30 dropped XSI STREAMS declarations, which causing below build failure. poky/build/tmp/work/corei7-64-poky-linux/ace/6.5.6-r0/ACE_wrappers/ace/os_include/os_stropts.h:56:17: fatal error: stropts.h: No such file or directory 56 | # include /**/ <stropts.h> | ^~~~~~~~~~~ compilation terminated. Added _XOPEN_STREAMS not defined checks for newer GLIBC releases. For more information about glibc v2.30 change, please check: https://sourceware.org/git/?p=glibc.git;a=commit;h=a0a0dc83173ce11ff45105fd32e5d14356cdfb9c Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com>
* | Merge pull request #942 from jwillemsen/jwi-sendfiledocuJohnny Willemsen2019-08-20396-858/+37
|\ \ | | | | | | Removed old comments before constructor/destructor
| * | Put constructor backJohnny Willemsen2019-08-191-0/+1
| | |
| * | Layout changesJohnny Willemsen2019-08-191-17/+7
| | |
| * | Removed old style documentation which was just about mentioning where ↵Johnny Willemsen2019-08-19119-243/+10
| | | | | | | | | | | | constructors/destructors are
| * | Removed old comments before constructor/destructorJohnny Willemsen2019-08-19298-599/+20
| | |
* | | Merge pull request #936 from mitza-oci/masterAdam Mitz2019-08-191-1/+10
|\ \ \ | | | | | | | | gnuace updates
| * | | gnuace: use list of generated files from GENERATED_DIRTY for ↵Adam Mitz2019-08-141-1/+1
| | | | | | | | | | | | | | | | ADDITIONAL_IDL_TARGETS
| * | | gnuace: check requires/avoids make variables when a custom-only project has ↵Adam Mitz2019-08-061-0/+9
| | | | | | | | | | | | | | | | a postbuild step
| * | | gnuace's ADDITIONAL_IDL_TARGETS (used by "make idl_stubs"): corrected ↵Adam Mitz2019-08-021-1/+1
| | |/ | |/| | | | | | | location of generated header for IDL files in other directories