diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-12-07 03:35:51 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-12-07 03:35:51 +0000 |
commit | 7a1899e8f3a05d76f840805a4a68efaf93cde4bd (patch) | |
tree | 822082ba0117438680286ce346b1d419758935a6 /ace/Handle_Set.h | |
parent | 31bc16e53f375e543cb94a665beedda7958ee170 (diff) | |
download | ATCD-7a1899e8f3a05d76f840805a4a68efaf93cde4bd.tar.gz |
ChangeLogTag: Mon Dec 06 21:16:53 1999 Irfan Pyarali <irfan@cs.wustl.edu>
Diffstat (limited to 'ace/Handle_Set.h')
-rw-r--r-- | ace/Handle_Set.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ace/Handle_Set.h b/ace/Handle_Set.h index a131eabdd15..79811ebc81f 100644 --- a/ace/Handle_Set.h +++ b/ace/Handle_Set.h @@ -27,7 +27,7 @@ class ACE_Export ACE_Handle_Set { // = TITLE // C++ wrapper facade for the socket <fd_set> abstraction. - // + // // = DESCRIPTION // This abstraction is a very efficient wrapper facade over // <fd_set>. In particular, no range checking is performed, so @@ -85,6 +85,10 @@ public: // Returns a pointer to the underlying <fd_set>. Returns 0 if // <size_> == 0. + fd_set *fdset (void); + // Returns a pointer to the underlying <fd_set>. Returns 0 if + // <size_> == 0. + #if defined (ACE_HAS_BIG_FD_SET) ACE_Handle_Set & operator= (const ACE_Handle_Set &); // Assignment operator optimizes for cases where <size_> == 0. |