diff options
author | Arnaud Versini <arnaud.versini@libreoffice.org> | 2013-09-22 14:08:53 +0200 |
---|---|---|
committer | Arnaud Versini <arnaud.versini@libreoffice.org> | 2013-09-28 16:37:39 +0000 |
commit | 164b6ce7b27c0a9ec19019e7b078b9f8f382007d (patch) | |
tree | b6e497b0a14a5f5d40d1316a87334aa129f88aac /sal/osl/unx/conditn.cxx | |
parent | 9fb9b057d65b07fcd037b31505561c5b3fe9939c (diff) |
General cleanup in sal module for all and unix.
Remove useless comments and header, and de duplicate a small declaration.
Change-Id: I0d4475cbbd61ea964f8e586cf0e1f68eb91c4948
Reviewed-on: https://gerrit.libreoffice.org/6016
Reviewed-by: Arnaud Versini <arnaud.versini@libreoffice.org>
Tested-by: Arnaud Versini <arnaud.versini@libreoffice.org>
Diffstat (limited to 'sal/osl/unx/conditn.cxx')
-rw-r--r-- | sal/osl/unx/conditn.cxx | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/sal/osl/unx/conditn.cxx b/sal/osl/unx/conditn.cxx index 90d70e1e5b5c..1daea54b68e2 100644 --- a/sal/osl/unx/conditn.cxx +++ b/sal/osl/unx/conditn.cxx @@ -37,9 +37,6 @@ typedef struct _oslConditionImpl } oslConditionImpl; -/*****************************************************************************/ -/* osl_createCondition */ -/*****************************************************************************/ oslCondition SAL_CALL osl_createCondition() { oslConditionImpl* pCond; @@ -89,9 +86,6 @@ oslCondition SAL_CALL osl_createCondition() return (oslCondition)pCond; } -/*****************************************************************************/ -/* osl_destroyCondition */ -/*****************************************************************************/ void SAL_CALL osl_destroyCondition(oslCondition Condition) { oslConditionImpl* pCond; @@ -118,9 +112,6 @@ void SAL_CALL osl_destroyCondition(oslCondition Condition) return; } -/*****************************************************************************/ -/* osl_setCondition */ -/*****************************************************************************/ sal_Bool SAL_CALL osl_setCondition(oslCondition Condition) { oslConditionImpl* pCond; @@ -171,9 +162,6 @@ sal_Bool SAL_CALL osl_setCondition(oslCondition Condition) } -/*****************************************************************************/ -/* osl_resetCondition */ -/*****************************************************************************/ sal_Bool SAL_CALL osl_resetCondition(oslCondition Condition) { oslConditionImpl* pCond; @@ -212,9 +200,6 @@ sal_Bool SAL_CALL osl_resetCondition(oslCondition Condition) return sal_True; } -/*****************************************************************************/ -/* osl_waitCondition */ -/*****************************************************************************/ oslConditionResult SAL_CALL osl_waitCondition(oslCondition Condition, const TimeValue* pTimeout) { oslConditionImpl* pCond; @@ -315,9 +300,6 @@ oslConditionResult SAL_CALL osl_waitCondition(oslCondition Condition, const Time return Result; } -/*****************************************************************************/ -/* osl_checkCondition */ -/*****************************************************************************/ sal_Bool SAL_CALL osl_checkCondition(oslCondition Condition) { sal_Bool State; |