diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-05-25 16:10:36 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-05-25 16:10:36 +0000 |
commit | f834a1ec3aaf8567ac92e2575a0514bbc5df20cf (patch) | |
tree | f5d7ed8f6c1b9fb95cdbf4c57cfcf2138a011741 | |
parent | 128ac575aa7aff6ed0d0b9d46155b782a4f40e03 (diff) | |
download | ATCD-f834a1ec3aaf8567ac92e2575a0514bbc5df20cf.tar.gz |
ChangeLogTag:Thu May 25 09:07:16 2000 Carlos O'Ryan <coryan@uci.edu>
-rw-r--r-- | ChangeLog | 21 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-02a | 21 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-03a | 21 | ||||
-rw-r--r-- | ace/OS_String.cpp | 6 |
4 files changed, 42 insertions, 27 deletions
diff --git a/ChangeLog b/ChangeLog index 581b0ff7c74..3d9bf50fc7b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,18 +1,23 @@ +Thu May 25 09:07:16 2000 Carlos O'Ryan <coryan@uci.edu> + + * ace/OS_String.cpp: + Removed a few ACE_INLINEs. + Wed May 24 20:27:26 2000 Ossama Othman <ossama@uci.edu> - * ace/OS_String.h: + * ace/OS_String.h: - Changed "u_long" to "unsigned long." The u_long typedef wasn't - being pulled in, so just use the basic type. This avoids having - to pull in a header, and fixes a compile time problem. + Changed "u_long" to "unsigned long." The u_long typedef wasn't + being pulled in, so just use the basic type. This avoids having + to pull in a header, and fixes a compile time problem. Wed May 24 20:18:59 2000 Ossama Othman <ossama@uci.edu> - * ace/Select_Reactor_Base.cpp (open): + * ace/Select_Reactor_Base.cpp (open): - Temporarily backed out change that added ability to set handle - limit to value greater than FD_SETSIZE. It breaks platforms - that don't support getrlimit(). + Temporarily backed out change that added ability to set handle + limit to value greater than FD_SETSIZE. It breaks platforms + that don't support getrlimit(). Wed May 24 18:56:16 2000 Darrell Brunsch <brunsch@uci.edu>: diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a index 581b0ff7c74..3d9bf50fc7b 100644 --- a/ChangeLogs/ChangeLog-02a +++ b/ChangeLogs/ChangeLog-02a @@ -1,18 +1,23 @@ +Thu May 25 09:07:16 2000 Carlos O'Ryan <coryan@uci.edu> + + * ace/OS_String.cpp: + Removed a few ACE_INLINEs. + Wed May 24 20:27:26 2000 Ossama Othman <ossama@uci.edu> - * ace/OS_String.h: + * ace/OS_String.h: - Changed "u_long" to "unsigned long." The u_long typedef wasn't - being pulled in, so just use the basic type. This avoids having - to pull in a header, and fixes a compile time problem. + Changed "u_long" to "unsigned long." The u_long typedef wasn't + being pulled in, so just use the basic type. This avoids having + to pull in a header, and fixes a compile time problem. Wed May 24 20:18:59 2000 Ossama Othman <ossama@uci.edu> - * ace/Select_Reactor_Base.cpp (open): + * ace/Select_Reactor_Base.cpp (open): - Temporarily backed out change that added ability to set handle - limit to value greater than FD_SETSIZE. It breaks platforms - that don't support getrlimit(). + Temporarily backed out change that added ability to set handle + limit to value greater than FD_SETSIZE. It breaks platforms + that don't support getrlimit(). Wed May 24 18:56:16 2000 Darrell Brunsch <brunsch@uci.edu>: diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a index 581b0ff7c74..3d9bf50fc7b 100644 --- a/ChangeLogs/ChangeLog-03a +++ b/ChangeLogs/ChangeLog-03a @@ -1,18 +1,23 @@ +Thu May 25 09:07:16 2000 Carlos O'Ryan <coryan@uci.edu> + + * ace/OS_String.cpp: + Removed a few ACE_INLINEs. + Wed May 24 20:27:26 2000 Ossama Othman <ossama@uci.edu> - * ace/OS_String.h: + * ace/OS_String.h: - Changed "u_long" to "unsigned long." The u_long typedef wasn't - being pulled in, so just use the basic type. This avoids having - to pull in a header, and fixes a compile time problem. + Changed "u_long" to "unsigned long." The u_long typedef wasn't + being pulled in, so just use the basic type. This avoids having + to pull in a header, and fixes a compile time problem. Wed May 24 20:18:59 2000 Ossama Othman <ossama@uci.edu> - * ace/Select_Reactor_Base.cpp (open): + * ace/Select_Reactor_Base.cpp (open): - Temporarily backed out change that added ability to set handle - limit to value greater than FD_SETSIZE. It breaks platforms - that don't support getrlimit(). + Temporarily backed out change that added ability to set handle + limit to value greater than FD_SETSIZE. It breaks platforms + that don't support getrlimit(). Wed May 24 18:56:16 2000 Darrell Brunsch <brunsch@uci.edu>: diff --git a/ace/OS_String.cpp b/ace/OS_String.cpp index de97a6529b7..a8d85ff05d4 100644 --- a/ace/OS_String.cpp +++ b/ace/OS_String.cpp @@ -33,7 +33,7 @@ ACE_OS_String::strnstr (const char *s1, const char *s2, size_t len2) } #if defined (ACE_HAS_WCHAR) -ACE_INLINE const wchar_t * +const wchar_t * ACE_OS_String::strnstr (const wchar_t *s1, const wchar_t *s2, size_t len2) { // Substring length @@ -57,7 +57,7 @@ ACE_OS_String::strnstr (const wchar_t *s1, const wchar_t *s2, size_t len2) } #endif /* ACE_HAS_WCHAR */ -ACE_INLINE char * +char * ACE_OS_String::strdup (const char *s) { // @@ WINCE Should we provide this function on WinCE? @@ -73,7 +73,7 @@ ACE_OS_String::strdup (const char *s) } #if defined (ACE_HAS_WCHAR) -ACE_INLINE wchar_t * +wchar_t * ACE_OS_String::strdup (const wchar_t *s) { # if defined (__BORLANDC__) |