LibreOffice
LibreOffice 6.4 SDK C/C++ API Reference
|
Go to the documentation of this file.
20 #ifndef INCLUDED_OSL_CONDITN_HXX
21 #define INCLUDED_OSL_CONDITN_HXX
30 #if defined(MACOSX) && defined(__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES)
31 # if __ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES == 1
122 #if defined LIBO_INTERNAL_ONLY
166 #endif // INCLUDED_OSL_CONDITN_HXX
@ osl_cond_result_ok
Definition: conditn.h:35
Definition: condition.hxx:28
void set()
Release all waiting threads, check returns true.
Definition: conditn.hxx:90
~Condition()
Release the OS-structures and free condition data-structure.
Definition: conditn.hxx:80
@ osl_cond_result_timeout
Definition: conditn.h:37
bool check()
Checks if the condition is set without blocking.
Definition: conditn.hxx:134
@ result_ok
Definition: conditn.hxx:60
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
Result wait(const TimeValue *pTimeout=NULL)
Blocks the calling thread until condition is set.
Definition: conditn.hxx:117
Condition variable.
Definition: conditn.hxx:56
@ result_error
Definition: conditn.hxx:61
void reset()
Reset condition to false: wait() will block, check() returns false.
Definition: conditn.hxx:101
SAL_DLLPUBLIC sal_Bool osl_resetCondition(oslCondition Condition)
Sets condition to False => wait() will block, check() returns False.
#define SAL_DELETED_FUNCTION
short-circuit extra-verbose API namespaces
Definition: types.h:396
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.
Condition()
Create a condition.
Definition: conditn.hxx:70
@ osl_cond_result_error
Definition: conditn.h:36
@ result_timeout
Definition: conditn.hxx:62
SAL_DLLPUBLIC sal_Bool osl_setCondition(oslCondition Condition)
Sets condition to True => wait() will not block, check() returns True.
Result
Definition: conditn.hxx:59