diff options
-rw-r--r-- | ACE/ChangeLog | 13 | ||||
-rw-r--r-- | ACE/ace/config-vxworks6.4.h | 2 |
2 files changed, 11 insertions, 4 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog index 188fcafc547..5536f966bd6 100644 --- a/ACE/ChangeLog +++ b/ACE/ChangeLog @@ -1,9 +1,14 @@ +Tue Feb 23 08:59:54 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl> + + * ace/config-vxworks6.4.h: + VxWorks lacks floorl and ceill + Mon Feb 22 20:01:54 UTC 2010 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu> * ace/Time_Value.{h,cpp}: Applied some patches from Olivier Langlois <olivier at olivierlanglois dot net> to fix some warnings. - Mon Feb 22 19:57:02 UTC 2010 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu> +Mon Feb 22 19:57:02 UTC 2010 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu> * ace/Thread_Mutex.inl (ACE_Thread_Mutex::lock): Added a non-const lock() method. Thanks to Phil for suggesting this. @@ -27,7 +32,7 @@ Mon Feb 22 13:40:14 UTC 2010 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu> Mon Feb 22 13:39:09 UTC 2010 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu> * ace/Recursive_Thread_Mutex.{h,inl}: Created a new lock() accessor - so it's consistent with the other synchronizer accessors in ACE. + so it's consistent with the other synchronizer accessors in ACE. Sun Feb 21 21:25:21 UTC 2010 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu> @@ -40,12 +45,12 @@ Sun Feb 21 21:28:03 UTC 2010 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu> * ace/OS_NS_math.{h,inl}: Added support for floor() and ceiling() for long double types. Thanks to Olivier Langlois <olivier at olivierlanglois dot net> for contributing this. - + * ace/Time_Value.{h,cpp}: Added support for operator<< and to handle long double values better. Thanks to Olivier Langlois <olivier at olivierlanglois dot net> for contributing this. This fixes bugid 3818 and 2434. - + Sun Feb 21 16:28:47 UTC 2010 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu> * tests/Recursive_Condition_Test.cpp: Revised this test so that it diff --git a/ACE/ace/config-vxworks6.4.h b/ACE/ace/config-vxworks6.4.h index dae90277785..1758eb61066 100644 --- a/ACE/ace/config-vxworks6.4.h +++ b/ACE/ace/config-vxworks6.4.h @@ -116,7 +116,9 @@ #define ACE_HAS_THREADS #define ACE_HAS_SYSCTL #define ACE_LACKS_ALPHASORT +#define ACE_LACKS_CEILL #define ACE_LACKS_EXEC +#define ACE_LACKS_FLOORL #define ACE_LACKS_RLIMIT #define ACE_LACKS_FILELOCKS #define ACE_LACKS_FORK |