diff options
Diffstat (limited to 'ace/CLASSIX/CLASSIX_OS.h')
-rw-r--r-- | ace/CLASSIX/CLASSIX_OS.h | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/ace/CLASSIX/CLASSIX_OS.h b/ace/CLASSIX/CLASSIX_OS.h index 6caccfe8a69..e708a5e7d9e 100644 --- a/ace/CLASSIX/CLASSIX_OS.h +++ b/ace/CLASSIX/CLASSIX_OS.h @@ -5,13 +5,13 @@ // // = LIBRARY // ace -// +// // = FILENAME // CLASSIX_OS.h // // = AUTHOR(S) // Nokia Telecommunications -// +// // ============================================================================ #ifndef ACE_CLASSIX_OS_H @@ -19,6 +19,11 @@ /* ------------------------------------------------------------------------- */ #include "ace/OS.h" + +#if !defined (ACE_LACKS_PRAGMA_ONCE) +# pragma once +#endif /* ACE_LACKS_PRAGMA_ONCE */ + #include "ace/Select_Reactor.h" #include "ace/Singleton.h" #include "ace/CLASSIX/CLASSIX_Port_Core.h" @@ -30,10 +35,10 @@ class ACE_Export ACE_CLASSIX_Mgr // = TITLE // Class to manage resouces, especially static resources - // + // // = DESCRIPTION // It is intended that one <ACE_CLASSIX_Mgr> per actor - // + // { public: friend ACE_Singleton<ACE_CLASSIX_Mgr, ACE_SYNCH_NULL_MUTEX>; @@ -82,23 +87,23 @@ private: class ACE_CLASSIX_Msg // = TITLE // Class wrapper over Chorus's KnMsgDesc structure - // + // // = DESCRIPTION // Provides initialization and reset methods to construct a KnMsgDesc. - // + // // The flags in the <flags> field of the KnMsgDesc structure is always // set to 0. Therefore, the message body will always be copied and // the message is assumed to be part of the user(kernel) address // space when the caller is a USER(SUPERVISOR) thread. // (Chorus may not support the options defined in the flag, so we // choose not to use the flag, i.e. set it to null). - // - // The message annex is not used. + // + // The message annex is not used. // = SEE ALSO // ipcSend(2) { - public: + public: // = initialization ACE_CLASSIX_Msg(); // default constructor |