diff options
-rw-r--r-- | ChangeLog | 77 | ||||
-rw-r--r-- | bin/MakeProjectCreator/config/acedefaults.mpb | 1 |
2 files changed, 43 insertions, 35 deletions
diff --git a/ChangeLog b/ChangeLog index 30ceb87e347..3fc0b180816 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,67 +1,74 @@ +Fri Nov 5 13:44:57 2004 Chad Elliott <elliott_c@ociweb.com> + + * bin/MakeProjectCreator/config/acedefaults.mpb: + + Added ACE_NO_INLINE=1 to debug_macros only for the bmake project + type. + Fri Nov 5 18:11:41 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu> - * ace/OS_NS_Thread.cpp (thr_create): + * ace/OS_NS_Thread.cpp (thr_create): + + Fixed memory leak that were caused due to allocated + <thread_args> not being deleted whenever there is an error. Got + around this problem by using an auto_ptr, and releasing the + pointer when thr_create () is successful. Thanks to Gary Maxey + for reporting the problem. - Fixed memory leak that were caused due to allocated - <thread_args> not being deleted whenever there is an error. Got - around this problem by using an auto_ptr, and releasing the - pointer when thr_create () is successful. Thanks to Gary Maxey - for reporting the problem. - - * ace/Base_Thread_Adapter.h (ACE_Base_Thread_Adapter): + * ace/Base_Thread_Adapter.h (ACE_Base_Thread_Adapter): - Moved the destructor to be public and the constructor to be - private. Making the destructor seems to have more downsides like - the one above (which basically prevented us from using - auto_ptr's). + Moved the destructor to be public and the constructor to be + private. Making the destructor seems to have more downsides like + the one above (which basically prevented us from using + auto_ptr's). Fri Nov 5 16:14:12 UTC 2004 Martin Corino <mcorino@remedy.nl> * ace/OS_NS_stdlib.cpp: Fixed unnecessary inclusion of 'limits' for VxWorks because - it caused problems with GCC 2.9.6 toolchain. + it caused problems with GCC 2.9.6 toolchain. Fri Nov 5 07:52:51 2004 J.T. Conklin <jtc@acorntoolworks.com> - * ace/ACE.cpp: + * ace/ACE.cpp: - Changed gcd() from recursive to iterative implementation. - A good optimizing compiler should be able to convert the - tail call to a jump; but some compilers aren't good, and - sometimes ACE is compiled without optimization. + Changed gcd() from recursive to iterative implementation. + A good optimizing compiler should be able to convert the + tail call to a jump; but some compilers aren't good, and + sometimes ACE is compiled without optimization. Fri Nov 5 15:36:12 UTC 2004 Martin Corino <mcorino@remedy.nl> * bin/MakeProjectCreator/templates/gnu.mpd: - * include/makeinclude/rules.bin.GNU: - Changes to support VxWorks 5.5.1 linking (both DIAB and GNU - toolchains). With VxWorks 5.5.1 linking is done based on - rules/targets defined in the makefile configuration provided - with the VxWorks toolset which is embedded in the ACE/TAO - structure through the platform_macros. + * include/makeinclude/rules.bin.GNU: + Changes to support VxWorks 5.5.1 linking (both DIAB and GNU + toolchains). With VxWorks 5.5.1 linking is done based on + rules/targets defined in the makefile configuration provided + with the VxWorks toolset which is embedded in the ACE/TAO + structure through the platform_macros. Fri Nov 5 15:30:12 UTC 2004 Martin Corino <mcorino@remedy.nl> * ace/config-vxworks5.x.h: - Updates for VxWorks 5.5.1 support. + Updates for VxWorks 5.5.1 support. Fri Nov 5 07:27:16 2004 J.T. Conklin <jtc@acorntoolworks.com> - * configure.ac: - * Makefile.am: + * configure.ac: + * Makefile.am: - Changed to configure/build new protocols subdirectory - heirarchy. + Changed to configure/build new protocols subdirectory + heirarchy. - * ace/Makefile.am: + * ace/Makefile.am: - Changed to not decend into HTBP subdirectory. + Changed to not decend into HTBP subdirectory. - * protocols/Makefile.am: - * protocols/ace/Makefile.am: - * protocols/ace/HTBP/Makefile.am: + * protocols/Makefile.am: + * protocols/ace/Makefile.am: + * protocols/ace/HTBP/Makefile.am: - Added new files. Automake support for new HTBP location. + Added new files. Automake support for new HTBP location. Fri Nov 5 07:33:33 2004 Chad Elliott <elliott_c@ociweb.com> diff --git a/bin/MakeProjectCreator/config/acedefaults.mpb b/bin/MakeProjectCreator/config/acedefaults.mpb index ff74f4e334e..fa7efd642d3 100644 --- a/bin/MakeProjectCreator/config/acedefaults.mpb +++ b/bin/MakeProjectCreator/config/acedefaults.mpb @@ -10,6 +10,7 @@ project: ace_qt, zzip { specific(bmake) { unicode_flags += -DACE_USES_WCHAR macros += ACE_LD_DECORATOR_STR=ACE_LIB_TEXT(\\"$(LIBMODIFIER)\\") + debug_macros += ACE_NO_INLINE=1 } specific(automake) { |