[Libreoffice-commits] core.git: include/osl

Chris Sherlock chris.sherlock79 at gmail.com
Sat Jun 24 22:28:02 UTC 2017


 include/osl/conditn.h |   13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

New commits:
commit d88776a05676af89b3d6d798e073acf778206bc1
Author: Chris Sherlock <chris.sherlock79 at gmail.com>
Date:   Sun Jun 25 08:27:07 2017 +1000

    osl: remove @relates Condition, not relevant
    
    Change-Id: Ifabb961817b8c3cc326264bb9d9bb1c3a4e7e461

diff --git a/include/osl/conditn.h b/include/osl/conditn.h
index a087f3504a49..ace66c624d15 100644
--- a/include/osl/conditn.h
+++ b/include/osl/conditn.h
@@ -45,16 +45,12 @@ typedef enum {
 
     The condition is in the reset-state.
 
-    @relates Condition
-
     @retval osl_cond_result_error Condition could not be created.
 */
 SAL_DLLPUBLIC oslCondition SAL_CALL osl_createCondition(void);
 
 /** Free the memory used by the condition.
 
-    @relates Condition
-
     @param Condition the condition handle.
 */
 SAL_DLLPUBLIC void SAL_CALL osl_destroyCondition(oslCondition Condition);
@@ -63,8 +59,6 @@ SAL_DLLPUBLIC void SAL_CALL osl_destroyCondition(oslCondition Condition);
 
     @attention @em all threads waiting on this condition are unblocked!
 
-    @relates Condition
-
     @param Condition handle to a created condition.
     @retval False if system-call failed.
 */
@@ -72,8 +66,6 @@ SAL_DLLPUBLIC sal_Bool SAL_CALL osl_setCondition(oslCondition Condition);
 
 /** Sets condition to False => wait() will block, check() returns False
 
-    @relates Condition
-
     @param Condition handle to a created condition.
     @retval False if system-call failed.
 */
@@ -81,8 +73,6 @@ SAL_DLLPUBLIC sal_Bool SAL_CALL osl_resetCondition(oslCondition Condition);
 
 /** Blocks if condition is not set.
 
-    @relates Condition
-
     @param Condition handle to a created condition.
     @param pTimeout Timeout value or NULL for infinite waiting
     @retval False Condition has been destroyed prematurely or system call has failed.
@@ -91,9 +81,8 @@ SAL_DLLPUBLIC oslConditionResult SAL_CALL osl_waitCondition(oslCondition Conditi
 
 /** Queries the state of the condition without blocking.
 
-    @relates Condition
-
     @param Condition handle to a created condition.
+
     @retval True condition is set
     @retval False condition is not set
 */


More information about the Libreoffice-commits mailing list