summaryrefslogtreecommitdiff
path: root/ace/ACE.h
diff options
context:
space:
mode:
authorgonzo <gonzo@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-30 23:15:47 +0000
committergonzo <gonzo@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-30 23:15:47 +0000
commit36d908246fdf354dadd1c089658d488a3bb7f225 (patch)
tree79f9d9c3e75ccc808b7b9db1c2c086d6f0d39620 /ace/ACE.h
parent8c977f1f46541efc210962ee64e4c52a65695c0f (diff)
downloadATCD-36d908246fdf354dadd1c089658d488a3bb7f225.tar.gz
Moved a few methods from ACE to ACE_Event_Handler
Diffstat (limited to 'ace/ACE.h')
-rw-r--r--ace/ACE.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/ace/ACE.h b/ace/ACE.h
index 41b0b26fce5..864d8ed3aa1 100644
--- a/ace/ACE.h
+++ b/ace/ACE.h
@@ -21,9 +21,6 @@
// Forward declarations.
class ACE_Time_Value;
-class ACE_Thread_Manager;
-class ACE_Reactor;
-class ACE_Event_Handler;
class ACE_INET_Addr;
class ACE_Export ACE
@@ -506,30 +503,6 @@ public:
// = Shield us from Win32's inability to select on STDIN.
-#if !defined (ACE_HAS_WINCE)
- static void *read_adapter (void *event_handler);
- // Used to read from non-socket ACE_HANDLEs in our own thread to
- // work around Win32 limitations that don't allow us to select() on
- // non-sockets (such as ACE_STDIN). This is commonly used in
- // situations where the Reactor is used to demultiplex read events
- // on ACE_STDIN on UNIX. Note that <event_handler> must be a
- // subclass of <ACE_Event_Handler>. If the <get_handle> method of
- // this event handler returns <ACE_INVALID_HANDLE> we default to
- // reading from ACE_STDIN.
-
- static int register_stdin_handler (ACE_Event_Handler *eh,
- ACE_Reactor *reactor,
- ACE_Thread_Manager *thr_mgr,
- int flags = THR_DETACHED);
- // Abstracts away from the differences between Win32 and ACE with
- // respect to reading from ACE_STDIN (which is non-select()'able on
- // Win32.
-
- static int remove_stdin_handler (ACE_Reactor *reactor,
- ACE_Thread_Manager *thr_mgr);
- // Performs the inverse of the <register_stdin_handler> method.
-#endif /* ACE_HAS_WINCE */
-
// = Miscelleous functions.
static size_t round_to_pagesize (off_t length);
// Rounds the request to a multiple of the page size.