summaryrefslogtreecommitdiff
path: root/sal/osl/w32
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2017-07-22 19:54:16 +1000
committerChris Sherlock <chris.sherlock79@gmail.com>2017-07-22 19:54:16 +1000
commite0b6a4a2d2dec4e9614f27fc03f84b1c578028ec (patch)
treea3fc6966bfb6e143e2ad1cfae7442974b49a7e5a /sal/osl/w32
parent194ba0845ef64272108c771ea37179638317d2ae (diff)
osl: get rid of comment cruft in w32 mutex.cxx
Change-Id: I8ca5a16d0d7bdedf8a8c5685e088043566bab8eb
Diffstat (limited to 'sal/osl/w32')
-rw-r--r--sal/osl/w32/mutex.cxx19
1 files changed, 0 insertions, 19 deletions
diff --git a/sal/osl/w32/mutex.cxx b/sal/osl/w32/mutex.cxx
index b3b46460c97d..95aca0ce5cef 100644
--- a/sal/osl/w32/mutex.cxx
+++ b/sal/osl/w32/mutex.cxx
@@ -31,9 +31,6 @@
CRITICAL_SECTION structure.
*/
-/*****************************************************************************/
-/* osl_createMutex */
-/*****************************************************************************/
oslMutex SAL_CALL osl_createMutex(void)
{
CRITICAL_SECTION *pMutexImpl;
@@ -47,9 +44,6 @@ oslMutex SAL_CALL osl_createMutex(void)
return reinterpret_cast<oslMutex>(pMutexImpl);
}
-/*****************************************************************************/
-/* osl_destroyMutex */
-/*****************************************************************************/
void SAL_CALL osl_destroyMutex(oslMutex Mutex)
{
CRITICAL_SECTION *pMutexImpl = reinterpret_cast<CRITICAL_SECTION *>(Mutex);
@@ -61,9 +55,6 @@ void SAL_CALL osl_destroyMutex(oslMutex Mutex)
}
}
-/*****************************************************************************/
-/* osl_acquireMutex */
-/*****************************************************************************/
sal_Bool SAL_CALL osl_acquireMutex(oslMutex Mutex)
{
CRITICAL_SECTION *pMutexImpl = reinterpret_cast<CRITICAL_SECTION *>(Mutex);
@@ -75,9 +66,6 @@ sal_Bool SAL_CALL osl_acquireMutex(oslMutex Mutex)
return true;
}
-/*****************************************************************************/
-/* osl_tryToAcquireMutex */
-/*****************************************************************************/
sal_Bool SAL_CALL osl_tryToAcquireMutex(oslMutex Mutex)
{
CRITICAL_SECTION *pMutexImpl = reinterpret_cast<CRITICAL_SECTION *>(Mutex);
@@ -87,9 +75,6 @@ sal_Bool SAL_CALL osl_tryToAcquireMutex(oslMutex Mutex)
return TryEnterCriticalSection(pMutexImpl) != FALSE;
}
-/*****************************************************************************/
-/* osl_releaseMutex */
-/*****************************************************************************/
sal_Bool SAL_CALL osl_releaseMutex(oslMutex Mutex)
{
CRITICAL_SECTION *pMutexImpl = reinterpret_cast<CRITICAL_SECTION *>(Mutex);
@@ -101,10 +86,6 @@ sal_Bool SAL_CALL osl_releaseMutex(oslMutex Mutex)
return true;
}
-/*****************************************************************************/
-/* osl_getGlobalMutex */
-/*****************************************************************************/
-
/* initialized in dllentry.c */
oslMutex g_Mutex;