diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-07-16 20:44:31 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-07-16 20:44:31 +0000 |
commit | 570e158b51ad92650492f44b14192f1325f2226a (patch) | |
tree | 721158ca49c04969aa2a6a29056447d0b4276ab7 /ace/IPC_SAP.h | |
parent | 4bf1a432dc01ce8fbdbc225c78d784cb139e7773 (diff) | |
download | ATCD-570e158b51ad92650492f44b14192f1325f2226a.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/IPC_SAP.h')
-rw-r--r-- | ace/IPC_SAP.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/ace/IPC_SAP.h b/ace/IPC_SAP.h index 3cd8f7d3bc7..ea723dd9b54 100644 --- a/ace/IPC_SAP.h +++ b/ace/IPC_SAP.h @@ -32,11 +32,16 @@ public: // Interface for ioctl. // = Common I/O descriptor options related to sockets. - int enable (int signum) const; - // Enable signal <signum>. - int disable (int signum) const; - // Disable signal <signum>. + int enable (int value) const; + // Enable asynchronous I/O (ACE_SIGIO), urgent data (ACE_SIGURG), + // non-blocking I/O (ACE_NONBLOCK), or close-on-exec (ACE_CLOEXEC), + // which is passed as the <value>. + + int disable (int value) const; + // Disable asynchronous I/O (ACE_SIGIO), urgent data (ACE_SIGURG), + // non-blocking I/O (ACE_NONBLOCK), or close-on-exec (ACE_CLOEXEC), + // which is passed as the <value>. ACE_HANDLE get_handle (void) const; // Get the underlying descriptor. |