diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-07-22 19:27:19 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-07-22 19:27:51 +1000 |
commit | f509b2830d21e8032647e6438054b2594fa2440f (patch) | |
tree | c5e915bc4c231e321a2c1b8151c69e0eaf065cc0 /sal/osl/w32 | |
parent | 87c64c00286433201e44795128014cbf0966cff3 (diff) |
osl: get rid of comment cruft in w32 conditn.cxx
Change-Id: I4ef57b561813c28dfbb2e930e4d972953b94f5ba
Diffstat (limited to 'sal/osl/w32')
-rw-r--r-- | sal/osl/w32/conditn.cxx | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/sal/osl/w32/conditn.cxx b/sal/osl/w32/conditn.cxx index a6a54961764a..9807eaa95863 100644 --- a/sal/osl/w32/conditn.cxx +++ b/sal/osl/w32/conditn.cxx @@ -28,9 +28,6 @@ as a WIN32 HANDLE (which is also a 32-bit value) */ -/*****************************************************************************/ -/* osl_createCondition */ -/*****************************************************************************/ oslCondition SAL_CALL osl_createCondition(void) { oslCondition Condition; @@ -44,20 +41,12 @@ oslCondition SAL_CALL osl_createCondition(void) } -/*****************************************************************************/ -/* osl_destroyCondition */ -/*****************************************************************************/ void SAL_CALL osl_destroyCondition(oslCondition Condition) { if(Condition) - { OSL_VERIFY(CloseHandle(Condition)); - } } -/*****************************************************************************/ -/* osl_setCondition */ -/*****************************************************************************/ sal_Bool SAL_CALL osl_setCondition(oslCondition Condition) { OSL_ASSERT(Condition); @@ -65,9 +54,6 @@ sal_Bool SAL_CALL osl_setCondition(oslCondition Condition) return SetEvent(reinterpret_cast<HANDLE>(Condition)) != FALSE; } -/*****************************************************************************/ -/* osl_resetCondition */ -/*****************************************************************************/ sal_Bool SAL_CALL osl_resetCondition(oslCondition Condition) { OSL_ASSERT(Condition); @@ -75,9 +61,6 @@ sal_Bool SAL_CALL osl_resetCondition(oslCondition Condition) return ResetEvent(reinterpret_cast<HANDLE>(Condition)) != FALSE; } -/*****************************************************************************/ -/* osl_waitCondition */ -/*****************************************************************************/ oslConditionResult SAL_CALL osl_waitCondition(oslCondition Condition, const TimeValue* pTimeout) { @@ -121,9 +104,6 @@ oslConditionResult SAL_CALL osl_waitCondition(oslCondition Condition, } } -/*****************************************************************************/ -/* osl_checkCondition */ -/*****************************************************************************/ sal_Bool SAL_CALL osl_checkCondition(oslCondition Condition) { OSL_ASSERT(Condition); |