|
LibreOffice
LibreOffice 7.2 SDK C/C++ API Reference
|
Go to the documentation of this file.
24 #ifndef INCLUDED_OSL_CONDITN_H
25 #define INCLUDED_OSL_CONDITN_H
99 #endif // INCLUDED_OSL_CONDITN_H
@ osl_cond_result_ok
Definition: conditn.h:39
@ osl_cond_result_FORCE_EQUAL_SIZE
Definition: conditn.h:42
@ osl_cond_result_timeout
Definition: conditn.h:41
unsigned char sal_Bool
Definition: types.h:38
SAL_DLLPUBLIC oslCondition osl_createCondition(void)
Creates a condition.
SAL_DLLPUBLIC sal_Bool osl_checkCondition(oslCondition Condition)
Queries the state of the condition without blocking.
void * oslCondition
Definition: conditn.h:36
#define SAL_DLLPUBLIC
Definition: saldllapi.h:34
oslConditionResult
Definition: conditn.h:38
#define SAL_MAX_ENUM
Definition: types.h:205
SAL_DLLPUBLIC sal_Bool osl_resetCondition(oslCondition Condition)
Sets condition to False => wait() will block, check() returns False.
SAL_DLLPUBLIC void osl_destroyCondition(oslCondition Condition)
Free the memory used by the condition.
SAL_DLLPUBLIC oslConditionResult osl_waitCondition(oslCondition Condition, const TimeValue *pTimeout)
Blocks if condition is not set.
@ osl_cond_result_error
Definition: conditn.h:40
SAL_DLLPUBLIC sal_Bool osl_setCondition(oslCondition Condition)
Sets condition to True => wait() will not block, check() returns True.