summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-11-02 00:25:08 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-11-02 00:25:08 +0000
commitf35d8a8f5ed2eaf87862fbcfeebe0b2deba415b8 (patch)
tree7b0c04303a5f6bb65b84bb0c5987b70c98afff1e
parentb5f2f9f0ee63c33455954bd7b4cd9c5d0f29ec20 (diff)
downloadATCD-f35d8a8f5ed2eaf87862fbcfeebe0b2deba415b8.tar.gz
ChangeLogTag:Sun Nov 2 00:23:25 UTC 2003 Don Hinton <dhinton@dresystems.com>
-rw-r--r--ChangeLog19
-rw-r--r--ace/OS_NS_netdb.cpp1
-rw-r--r--ace/OS_NS_poll.inl1
-rw-r--r--ace/OS_NS_unistd.cpp1
-rw-r--r--ace/Object_Manager_Base.cpp2
-rw-r--r--ace/os_include/os_signal.h2
6 files changed, 24 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0a5b6c65006..61660187bd2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,22 @@
+Sun Nov 2 00:23:25 UTC 2003 Don Hinton <dhinton@dresystems.com>
+
+ * ace/OS_NS_netdb.cpp:
+ Added #include of OS_NS_Thread.h needed when
+ ACE_LACKS_NETDB_REENTRANT_FUNCTIONS is defined.
+
+ * ace/OS_NS_poll.inl:
+ Added #include of OS_NS_errno.h.
+
+ * ace/OS_NS_unistd.cpp:
+ Added #include of Guard_T.h.
+
+ * ace/Object_Manager_Base.cpp:
+ Fixed typo.
+
+ * ace/os_include/os_signal.h:
+ Fixed typo. Thanks to Johnny Willemsen <jwillemsen@remedy.nl>
+ for reporting this.
+
Sat Nov 1 23:45:49 UTC 2003 Don Hinton <dhinton@dresystems.com>
* ace/ACE_export.h:
diff --git a/ace/OS_NS_netdb.cpp b/ace/OS_NS_netdb.cpp
index 61073801acc..ccd51c84270 100644
--- a/ace/OS_NS_netdb.cpp
+++ b/ace/OS_NS_netdb.cpp
@@ -341,6 +341,7 @@ ACE_OS::getmacaddress (struct macaddr_node_t *node)
}
# if defined (ACE_LACKS_NETDB_REENTRANT_FUNCTIONS)
+# include "ace/OS_NS_Thread.h"
int
ACE_OS::netdb_acquire (void)
{
diff --git a/ace/OS_NS_poll.inl b/ace/OS_NS_poll.inl
index 59ce51f1bc9..8d808fbd6f5 100644
--- a/ace/OS_NS_poll.inl
+++ b/ace/OS_NS_poll.inl
@@ -2,6 +2,7 @@
// $Id$
#include "ace/Time_Value.h"
+#include "ace/OS_NS_errno.h"
ACE_INLINE int
ACE_OS::poll (struct pollfd *pollfds,
diff --git a/ace/OS_NS_unistd.cpp b/ace/OS_NS_unistd.cpp
index 4b17f4667df..56f31b83cf1 100644
--- a/ace/OS_NS_unistd.cpp
+++ b/ace/OS_NS_unistd.cpp
@@ -14,6 +14,7 @@ ACE_RCSID(ace, OS_NS_unistd, "$Id$")
#include "ace/OS_NS_ctype.h"
#include "ace/Default_Constants.h"
#include "ace/OS_Memory.h"
+#include "ace/Guard_T.h"
#if defined (ACE_NEEDS_FTRUNCATE)
extern "C" int
diff --git a/ace/Object_Manager_Base.cpp b/ace/Object_Manager_Base.cpp
index c0209773c1f..1d64cc2d9f5 100644
--- a/ace/Object_Manager_Base.cpp
+++ b/ace/Object_Manager_Base.cpp
@@ -3,7 +3,7 @@
#include "ace/Object_Manager_Base.h"
-ACE_RCSID(ace, OS_NS_sys_time, "$Id$")
+ACE_RCSID(ace, Object_Manager_Base, "$Id$")
#if !defined (ACE_HAS_INLINED_OSCALLS)
# include "ace/Object_Manager_Base.inl"
diff --git a/ace/os_include/os_signal.h b/ace/os_include/os_signal.h
index ab3b46a26bf..20d3daf3eb0 100644
--- a/ace/os_include/os_signal.h
+++ b/ace/os_include/os_signal.h
@@ -27,7 +27,7 @@
#include "ace/os_include/sys/os_types.h"
#include "ace/os_include/os_time.h"
-#if !defined (ACE_LACKS_SINGNAL_H)
+#if !defined (ACE_LACKS_SIGNAL_H)
extern "C" {
# include /**/ <signal.h>
}