diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2002-02-27 18:53:39 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2002-02-27 18:53:39 +0000 |
commit | c96996b941c76fd98941656486b467c6af15bd45 (patch) | |
tree | d0bc74445a70b3621de2de64b3fce15ec8606e5d /ace/Synch.h | |
parent | 40115d7c23195850182e86881175bef794eb584a (diff) | |
download | ATCD-c96996b941c76fd98941656486b467c6af15bd45.tar.gz |
ChangeLogTag:Wed Feb 27 06:00:37 2002 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
Diffstat (limited to 'ace/Synch.h')
-rw-r--r-- | ace/Synch.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/ace/Synch.h b/ace/Synch.h index c3099776f4d..faf185a9e78 100644 --- a/ace/Synch.h +++ b/ace/Synch.h @@ -821,10 +821,10 @@ public: * * @brief A wrapper around the Win32 event locking mechanism. * - * Portable implementation of an Event mechanism, which is - * native to Win32, but must be emulated on UNIX. Note that - * this only provides global naming and system-scope locking support - * on Win32 platforms. + * Portable implementation of an Event mechanism, which is native to + * Win32, but must be emulated on UNIX. All platforms support + * process-scope locking support. However, only Win32 platforms + * support global naming and system-scope locking support. */ class ACE_Export ACE_Event { @@ -928,8 +928,9 @@ private: * @brief Manual Events. * * Specialization of Event mechanism which wakes up all waiting - * threads on <signal>. Note that this only provides - * global naming and system-scope locking support on Win32 platforms. + * thread on <signal>. All platforms support process-scope locking + * support. However, only Win32 platforms support global naming and + * system-scope locking support. */ class ACE_Export ACE_Manual_Event : public ACE_Event { @@ -964,8 +965,9 @@ public: * @brief Auto Events. * * Specialization of Event mechanism which wakes up one waiting - * thread on <signal>. Note that this only provides - * global naming and system-scope locking support on Win32 platforms. + * thread on <signal>. All platforms support process-scope locking + * support. However, only Win32 platforms support global naming and + * system-scope locking support. */ class ACE_Export ACE_Auto_Event : public ACE_Event { |