mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-05 03:04:16 +01:00
51 lines
941 B
C
51 lines
941 B
C
#pragma once
|
|
#include <wut.h>
|
|
#include "threadqueue.h"
|
|
|
|
/**
|
|
* \defgroup coreinit_fastcond Fast Condition Variable
|
|
* \ingroup coreinit
|
|
*
|
|
* A condition variable to be used with an OSFastMutex.
|
|
*
|
|
* @{
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct OSFastCondition OSFastCondition;
|
|
typedef struct OSFastMutex OSFastMutex;
|
|
|
|
#define OS_FAST_CONDITION_TAG 0x664E6456u
|
|
|
|
struct OSFastCondition
|
|
{
|
|
uint32_t tag;
|
|
const char *name;
|
|
WUT_UNKNOWN_BYTES(4);
|
|
OSThreadQueue queue;
|
|
};
|
|
WUT_CHECK_OFFSET(OSFastCondition, 0x00, tag);
|
|
WUT_CHECK_OFFSET(OSFastCondition, 0x04, name);
|
|
WUT_CHECK_OFFSET(OSFastCondition, 0x0c, queue);
|
|
WUT_CHECK_SIZE(OSFastCondition, 0x1c);
|
|
|
|
void
|
|
OSFastCond_Init(OSFastCondition *condition,
|
|
const char *name);
|
|
|
|
void
|
|
OSFastCond_Wait(OSFastCondition *condition,
|
|
OSFastMutex *mutex);
|
|
|
|
void
|
|
OSFastCond_Signal(OSFastCondition *condition);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|