diff options
author | Stefan Knorr (astron) <heinzlesspam@gmail.com> | 2011-12-08 09:05:20 +0100 |
---|---|---|
committer | Stefan Knorr (astron) <heinzlesspam@gmail.com> | 2011-12-08 09:06:09 +0100 |
commit | ad2eb6c4ba3ca36e2302c721a106dac80d266325 (patch) | |
tree | aa06f1d4b3473fd64f886b89b27af05dd043374f /framework | |
parent | 79b00c41863bcb0d0cc1781d18e97d5871667fb0 (diff) |
Less succes, more success
Diffstat (limited to 'framework')
-rw-r--r-- | framework/inc/threadhelp/fairrwlock.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/inc/threadhelp/fairrwlock.hxx b/framework/inc/threadhelp/fairrwlock.hxx index a47d4510c153..72cbf4212a9c 100644 --- a/framework/inc/threadhelp/fairrwlock.hxx +++ b/framework/inc/threadhelp/fairrwlock.hxx @@ -125,7 +125,7 @@ class FairRWLock : public IRWLock inline virtual void acquireReadAccess() { // Put call in "SERIALIZE"-queue! - // After successful acquiring this mutex we are alone ... + // After successfully acquiring this mutex we are alone ... ::osl::MutexGuard aSerializeGuard( m_aSerializer ); // ... but we should synchronize us with other reader! @@ -190,7 +190,7 @@ class FairRWLock : public IRWLock // are registered (not for releasing them!) or writer finished their work! // Don't use a guard to do so - because you must hold the mutex till // you call releaseWriteAccess()! - // After succesfull acquire you have to wait for current working reader. + // After successfully acquiring you have to wait for current working reader. // Used condition will open by last gone reader object. m_aSerializer.acquire(); m_aWriteCondition.wait(); |