From 5d9f467373e62c6f49e69995157880d0b96f767b Mon Sep 17 00:00:00 2001 From: Steve Huston Date: Mon, 20 Aug 2001 22:22:44 +0000 Subject: ChangeLogTag:Mon Aug 20 18:20:51 2001 Steve Huston --- ChangeLog | 6 ++++++ ChangeLogs/ChangeLog-02a | 6 ++++++ ChangeLogs/ChangeLog-03a | 6 ++++++ ace/Process.cpp | 3 ++- 4 files changed, 20 insertions(+), 1 deletion(-) 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 + + * 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 * 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 + + * 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 * 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 + + * 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 * 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); -- cgit v1.2.1