14
15
16
17
18
19
20
21
22
23
24
25
26
|
*/
#include "config.h"
#include "platform.h"
#if defined(OF_HAVE_PTHREADS)
# include "platform/posix/condition.m"
#elif defined(OF_WINDOWS)
# include "platform/windows/condition.m"
#elif defined(OF_AMIGAOS)
# include "platform/amiga/condition.m"
#endif
|
|
|
|
|
14
15
16
17
18
19
20
21
22
23
24
25
26
|
*/
#include "config.h"
#include "platform.h"
#if defined(OF_HAVE_PTHREADS)
# include "platform/posix/OFPlainCondition.m"
#elif defined(OF_WINDOWS)
# include "platform/windows/OFPlainCondition.m"
#elif defined(OF_AMIGAOS)
# include "platform/amiga/OFPlainCondition.m"
#endif
|