summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2004-11-02 16:15:56 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2004-11-02 16:15:56 +0000
commit8716304a27dac2dda84b52a585b416ae0f644a8e (patch)
tree0f38fd5213cf64ba0fcbfed25a7189b635a033c6
parent019d310956a7e4f49a38ae3cea4f1486d807521b (diff)
downloadATCD-8716304a27dac2dda84b52a585b416ae0f644a8e.tar.gz
ChangeLogTag: Tue Nov 2 10:15:01 2004 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog34
-rw-r--r--tests/SOCK_SEQPACK_SCTP_Test.cpp4
2 files changed, 23 insertions, 15 deletions
diff --git a/ChangeLog b/ChangeLog
index 75c49ab598c..9f8ffbfc4a4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,18 +1,26 @@
+Tue Nov 2 10:15:01 2004 Chad Elliott <elliott_c@ociweb.com>
+
+ * tests/SOCK_SEQPACK_SCTP_Test.cpp:
+
+ Cast the first parameter to ACE_Thread_Manager::spawn to
+ ACE_THR_FUNC (as is done in other tests) to avoid compilation
+ problems on Windows.
+
Mon Nov 1 07:27:11 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
- * ace/INET_Addr.cpp: Fixed the implementation of
-
- ACE_INET_Addr (const char port_name[],
- ACE_UINT32 ip_addr,
- const char protocol[] = "tcp");
-
- ACE_INET_Addr (const wchar_t port_name[],
- ACE_UINT32 ip_addr,
- const wchar_t protocol[] = "tcp");
+ * ace/INET_Addr.cpp: Fixed the implementation of
+
+ ACE_INET_Addr (const char port_name[],
+ ACE_UINT32 ip_addr,
+ const char protocol[] = "tcp");
+
+ ACE_INET_Addr (const wchar_t port_name[],
+ ACE_UINT32 ip_addr,
+ const wchar_t protocol[] = "tcp");
so that they convert the ip_addr into network byte order before
- calling set(). Thanks to Xue Yong Zhi <seclib@seclib.com> for
- reporting this bug and providing the fix.
+ calling set(). Thanks to Xue Yong Zhi <seclib@seclib.com> for
+ reporting this bug and providing the fix.
Tue Nov 2 06:56:21 2004 Chad Elliott <elliott_c@ociweb.com>
@@ -31,8 +39,8 @@ Tue Nov 2 07:59:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
Mon Nov 1 10:21:00 2004 Gary Maxey <gary.maxey@hp.com>
- * ace/TP_Reactor.cpp: performace enhancement in handle_timer_events
- See Bugzilla #1971 for details.
+ * ace/TP_Reactor.cpp: performace enhancement in handle_timer_events
+ See Bugzilla #1971 for details.
* ace/TP_Reactor.cpp: performace enhancement in handle_timer_events
See Bugzilla #1971 for details.
diff --git a/tests/SOCK_SEQPACK_SCTP_Test.cpp b/tests/SOCK_SEQPACK_SCTP_Test.cpp
index 48b90c372b1..d70a9ee31e3 100644
--- a/tests/SOCK_SEQPACK_SCTP_Test.cpp
+++ b/tests/SOCK_SEQPACK_SCTP_Test.cpp
@@ -310,7 +310,7 @@ spawn_test(bool ipv6_test)
}
#elif defined (ACE_HAS_THREADS)
if (-1 == ACE_Thread_Manager::instance ()->spawn
- (Server,
+ (ACE_THR_FUNC (Server),
ACE_reinterpret_cast(void *, &AcceptorSocket),
THR_NEW_LWP | THR_DETACHED))
{
@@ -320,7 +320,7 @@ spawn_test(bool ipv6_test)
}
if (-1 == ACE_Thread_Manager::instance ()->spawn
- (Client,
+ (ACE_THR_FUNC (Client),
ACE_reinterpret_cast(void *, &ServerAddr),
THR_NEW_LWP | THR_DETACHED))
{