diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-06-09 17:09:23 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-06-09 17:09:23 +0000 |
commit | e0cdd91ecd7edcdb247e6dbf62d3735f20035d12 (patch) | |
tree | 90f5b81683074181bd0742ded518ded2b319518a | |
parent | b17db4f0872f9e3ce8294013c5f1936a57df573b (diff) | |
download | ATCD-e0cdd91ecd7edcdb247e6dbf62d3735f20035d12.tar.gz |
.
-rw-r--r-- | ChangeLog-99b | 4 | ||||
-rw-r--r-- | README | 1 | ||||
-rw-r--r-- | ace/config-mvs.h | 5 |
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b index 734a169d6ab..3de017acf22 100644 --- a/ChangeLog-99b +++ b/ChangeLog-99b @@ -1,5 +1,9 @@ Wed Jun 9 00:20:49 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu> + * ace/config-mvs.h: Changed the size of the ACE_SIZEOF_DOUBLE and + ACE_SIZEOF_LONG_DOUBLE from 4 and to 8 and 16, respectively. + Thanks to Jim Rogers for reporting this. + * ace/config-mvs.h: Added ACE_HAS_NONCONST_SELECT_TIMEVAL on the advice of Jim Rogers <jrogers@viasoft.com>. @@ -863,6 +863,7 @@ Eric S Rosenthal <esr@netcom.com> Sridevi Subramanian <subrams@erols.com> Bruce Trask <BTRASK@contactsystems.com> Jake Hamby <jehamby@anobject.com> +Rick Weisner <Rick.Weisner@East.Sun.COM> I would particularly like to thank Paul Stephenson, who worked with me at Ericsson and is now at ObjectSpace. Paul devised the recursive diff --git a/ace/config-mvs.h b/ace/config-mvs.h index 985760cdedd..4eb1f8bdd33 100644 --- a/ace/config-mvs.h +++ b/ace/config-mvs.h @@ -23,6 +23,7 @@ // Optimize ACE_Handle_Set for select(). #define ACE_HAS_HANDLE_SET_OPTIMIZED_FOR_SELECT +#define ACE_HAS_NONCONST_SELECT_TIMEVAL // See the README file in this directory // for a description of the following ACE_ macros @@ -103,8 +104,8 @@ #endif /* ACE_NTRACE */ #define ACE_SIZEOF_FLOAT 4 -#define ACE_SIZEOF_DOUBLE 4 -#define ACE_SIZEOF_LONG_DOUBLE 4 +#define ACE_SIZEOF_DOUBLE 8 +#define ACE_SIZEOF_LONG_DOUBLE 16 #define ACE_HAS_DIRENT #define ACE_LACKS_READDIR_R |