diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2000-05-29 23:10:54 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2000-05-29 23:10:54 +0000 |
commit | 76698a28b10ba7aa0a5da6dd7fa0c83a3c7fef7a (patch) | |
tree | b151051c3d1e627831d14bd0e5627b56fafb0b9c /ace/IO_Cntl_Msg.h | |
parent | 26bfc97fb20947e79b66fb099acff3e03b84d7b2 (diff) | |
download | ATCD-76698a28b10ba7aa0a5da6dd7fa0c83a3c7fef7a.tar.gz |
ChangeLogTag:Mon May 29 16:49:25 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'ace/IO_Cntl_Msg.h')
-rw-r--r-- | ace/IO_Cntl_Msg.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ace/IO_Cntl_Msg.h b/ace/IO_Cntl_Msg.h index 5e00425ea66..8e8e4380dd9 100644 --- a/ace/IO_Cntl_Msg.h +++ b/ace/IO_Cntl_Msg.h @@ -23,7 +23,7 @@ class ACE_Export ACE_IO_Cntl_Msg // = TITLE // Data format for IOCTL messages public: - enum ACE_IO_Cntl_Cmds + enum { SET_LWM = 1, // Set the low water mark. GET_LWM = 2, // Get the low water mark. @@ -33,6 +33,8 @@ public: MOD_UNLINK = 6 // Unlink modules }; + typedef u_short ACE_IO_Cntl_Cmds; + // = Initialization method. ACE_IO_Cntl_Msg (ACE_IO_Cntl_Cmds c) { this->cmd_ = c; } // Initialize the control message. |