LibreOffice
LibreOffice 6.4 SDK C/C++ API Reference
|
Go to the documentation of this file.
20 #ifndef INCLUDED_OSL_CONDITN_H
21 #define INCLUDED_OSL_CONDITN_H
95 #endif // INCLUDED_OSL_CONDITN_H
@ osl_cond_result_ok
Definition: conditn.h:35
@ osl_cond_result_FORCE_EQUAL_SIZE
Definition: conditn.h:38
@ osl_cond_result_timeout
Definition: conditn.h:37
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:32
#define SAL_DLLPUBLIC
Definition: saldllapi.h:30
oslConditionResult
Definition: conditn.h:34
#define SAL_MAX_ENUM
Definition: types.h:223
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:36
SAL_DLLPUBLIC sal_Bool osl_setCondition(oslCondition Condition)
Sets condition to True => wait() will not block, check() returns True.