diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-07-16 21:12:01 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-07-16 21:12:01 +0000 |
commit | e5e1e7f191b248efa4e818ed01216e2f6e993263 (patch) | |
tree | 5444e19fac4a67371be4f914eb7add7fda5461a8 /ace/IPC_SAP.h | |
parent | 570e158b51ad92650492f44b14192f1325f2226a (diff) | |
download | ATCD-e5e1e7f191b248efa4e818ed01216e2f6e993263.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/IPC_SAP.h')
-rw-r--r-- | ace/IPC_SAP.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ace/IPC_SAP.h b/ace/IPC_SAP.h index ea723dd9b54..7d168b53ccf 100644 --- a/ace/IPC_SAP.h +++ b/ace/IPC_SAP.h @@ -31,7 +31,7 @@ public: int control (int cmd, void *) const; // Interface for ioctl. - // = Common I/O descriptor options related to sockets. + // = Common I/O handle options related to sockets. int enable (int value) const; // Enable asynchronous I/O (ACE_SIGIO), urgent data (ACE_SIGURG), @@ -44,10 +44,10 @@ public: // which is passed as the <value>. ACE_HANDLE get_handle (void) const; - // Get the underlying descriptor. + // Get the underlying handle. void set_handle (ACE_HANDLE handle); - // Set the underlying descriptor. + // Set the underlying handle. void dump (void) const; // Dump the state of an object. @@ -62,7 +62,7 @@ protected: private: ACE_HANDLE handle_; - // Underlying I/O descriptor. + // Underlying I/O handle. static pid_t pid_; // Cache the process ID. @@ -70,6 +70,6 @@ private: #if !defined (ACE_LACKS_INLINE_FUNCTIONS) #include "ace/IPC_SAP.i" -#endif +#endif /* ACE_LACKS_INLINE_FUNCTIONS */ #endif /* ACE_IPC_SAP_H */ |