diff options
Diffstat (limited to 'ace/IPC_SAP.i')
-rw-r--r-- | ace/IPC_SAP.i | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ace/IPC_SAP.i b/ace/IPC_SAP.i index 1d2c53b2783..69a5befa3b1 100644 --- a/ace/IPC_SAP.i +++ b/ace/IPC_SAP.i @@ -5,33 +5,33 @@ #include "ace/OS_NS_stropts.h" -// Used to return the underlying handle_. +// Used to return the underlying handle_. -ASYS_INLINE +ACE_INLINE ACE_IPC_SAP::~ACE_IPC_SAP (void) { // ACE_TRACE ("ACE_IPC_SAP::~ACE_IPC_SAP"); } -ASYS_INLINE ACE_HANDLE +ACE_INLINE ACE_HANDLE ACE_IPC_SAP::get_handle (void) const { ACE_TRACE ("ACE_IPC_SAP::get_handle"); return this->handle_; } -// Used to set the underlying handle_. +// Used to set the underlying handle_. -ASYS_INLINE void +ACE_INLINE void ACE_IPC_SAP::set_handle (ACE_HANDLE handle) { ACE_TRACE ("ACE_IPC_SAP::set_handle"); this->handle_ = handle; } -// Provides access to the ACE_OS::ioctl system call. +// Provides access to the ACE_OS::ioctl system call. -ASYS_INLINE int +ACE_INLINE int ACE_IPC_SAP::control (int cmd, void *arg) const { ACE_TRACE ("ACE_IPC_SAP::control"); |