summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2001-08-20 22:22:44 +0000
committerSteve Huston <shuston@riverace.com>2001-08-20 22:22:44 +0000
commit5d9f467373e62c6f49e69995157880d0b96f767b (patch)
tree414b4197db927c61c4ae334db15ae1d17ffc8a9c
parentf7eae1c3bc0f78b4ef24439f0ee7cc2dc722e969 (diff)
downloadATCD-5d9f467373e62c6f49e69995157880d0b96f767b.tar.gz
ChangeLogTag:Mon Aug 20 18:20:51 2001 Steve Huston <shuston@riverace.com>
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLogs/ChangeLog-02a6
-rw-r--r--ChangeLogs/ChangeLog-03a6
-rw-r--r--ace/Process.cpp3
4 files changed, 20 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c49018e9586..8c66a49afbb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Mon Aug 20 18:20:51 2001 Steve Huston <shuston@riverace.com>
+
+ * ace/Process.cpp (pass_handle): Only try to compile the
+ DuplicateHandle stuff when !ACE_HAS_WINCE... I think it's
+ right this time...
+
Mon Aug 20 15:54:46 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/SUN_Proactor.cpp: Removed the instantiation of
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index c49018e9586..8c66a49afbb 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,9 @@
+Mon Aug 20 18:20:51 2001 Steve Huston <shuston@riverace.com>
+
+ * ace/Process.cpp (pass_handle): Only try to compile the
+ DuplicateHandle stuff when !ACE_HAS_WINCE... I think it's
+ right this time...
+
Mon Aug 20 15:54:46 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/SUN_Proactor.cpp: Removed the instantiation of
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index c49018e9586..8c66a49afbb 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,9 @@
+Mon Aug 20 18:20:51 2001 Steve Huston <shuston@riverace.com>
+
+ * ace/Process.cpp (pass_handle): Only try to compile the
+ DuplicateHandle stuff when !ACE_HAS_WINCE... I think it's
+ right this time...
+
Mon Aug 20 15:54:46 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/SUN_Proactor.cpp: Removed the instantiation of
diff --git a/ace/Process.cpp b/ace/Process.cpp
index 7b1d3e821ca..c00fe8f9588 100644
--- a/ace/Process.cpp
+++ b/ace/Process.cpp
@@ -825,7 +825,7 @@ ACE_Process_Options::pass_handle (ACE_HANDLE h)
# if defined (ACE_WIN32)
# if defined (ACE_HAS_WINCE)
ACE_NOTSUP_RETURN (-1);
-# endif /* ACE_HAS_WINCE */
+# else
// This is oriented towards socket handles... may need some adjustment
// for non-sockets.
@@ -852,6 +852,7 @@ ACE_Process_Options::pass_handle (ACE_HANDLE h)
return -1;
dup_handles_.set_bit (ACE_static_cast (ACE_HANDLE, dup_handle));
}
+# endif /* ACE_HAS_WINCE */
#endif /* ACE_WIN32 */
this->handles_passed_.set_bit (h);