mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 17:21:52 +01:00
40 lines
751 B
C
40 lines
751 B
C
#pragma once
|
|
#include <wut.h>
|
|
#include "threadqueue.h"
|
|
|
|
#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;
|
|
UNKNOWN(4);
|
|
OSThreadQueue queue;
|
|
};
|
|
CHECK_OFFSET(OSFastCondition, 0x00, tag);
|
|
CHECK_OFFSET(OSFastCondition, 0x04, name);
|
|
CHECK_OFFSET(OSFastCondition, 0x0c, queue);
|
|
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
|