summaryrefslogtreecommitdiff
path: root/ace/Proactor.h
diff options
context:
space:
mode:
authoralex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-15 20:29:15 +0000
committeralex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-15 20:29:15 +0000
commit9fab172d45ef9f10b74293173c5331e46e30d5a2 (patch)
treebb22683426e2b85d0e9d32184592f4df85428002 /ace/Proactor.h
parentd6be1ae2ad1b53569bd3473f5f9c4c2dedeb8b6c (diff)
downloadATCD-9fab172d45ef9f10b74293173c5331e46e30d5a2.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Proactor.h')
-rw-r--r--ace/Proactor.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/ace/Proactor.h b/ace/Proactor.h
index 52fbe002cd6..782f1d067f3 100644
--- a/ace/Proactor.h
+++ b/ace/Proactor.h
@@ -263,8 +263,7 @@ public:
// Get the event handle.
#if defined (ACE_HAS_AIO_CALLS)
- int insert_to_aiocb_list (aiocb *aiocb_ptr,
- ACE_Asynch_Result *result);
+ int insert_to_aiocb_list (aiocb *aiocb_ptr);
// @@ Alex, is it possible to "hide" this better, i.e., so it's not
// in the public interface? Perhaps we could use a "friend"
// instead, or better yet, abstract away from this via some other
@@ -274,9 +273,6 @@ public:
// Proactor. Inserting this <aiocb_ptr> to the array so that
// <aio_return> and <aio_error> can make use of that. Inserting
// result so that we can call the application back through complete.
- // @@ Can array be full? That means, the aio issue is successful,
- // but there are already AIO_LIST_AIO_MAX of calls pending. I will
- // have to go for something other than arrays then.
#endif /* ACE_HAS_AIO_CALLS */
protected:
@@ -335,11 +331,9 @@ protected:
// is something else in LynxOS!!!
#if defined (AIO_LISTIO_MAX)
aiocb *aiocb_list_ [AIO_LISTIO_MAX];
- ACE_Asynch_Result *result_list_ [AIO_LISTIO_MAX];
#else /* AIO_LISTIO_MAX */
// Minimum is 2.
struct aiocb *aiocb_list_ [2];
- ACE_Asynch_Result *result_list_ [2];
#endif /* AIO_LIST_AIO_MAX */
size_t aiocb_list_max_size_;