diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-06-25 08:27:07 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-06-25 08:27:07 +1000 |
commit | d88776a05676af89b3d6d798e073acf778206bc1 (patch) | |
tree | aec592eb451f2a118f51cd6a1d2afbb42145a7b3 | |
parent | 3e82c30b89b87199b8f20658beecbfccccffcd52 (diff) |
osl: remove @relates Condition, not relevant
Change-Id: Ifabb961817b8c3cc326264bb9d9bb1c3a4e7e461
-rw-r--r-- | include/osl/conditn.h | 13 |
1 files changed, 1 insertions, 12 deletions
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 */ |