mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 17:41:49 +01:00
77 lines
1.5 KiB
C
77 lines
1.5 KiB
C
|
#pragma once
|
||
|
#include <wut.h>
|
||
|
#include "threadqueue.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
typedef struct OSFastMutex OSFastMutex;
|
||
|
typedef struct OSFastMutexLink OSFastMutexLink;
|
||
|
typedef struct OSFastCondition OSFastCondition;
|
||
|
|
||
|
struct OSFastMutexLink
|
||
|
{
|
||
|
OSFastMutex *next;
|
||
|
OSFastMutex *prev;
|
||
|
};
|
||
|
CHECK_OFFSET(OSFastMutexLink, 0x00, next);
|
||
|
CHECK_OFFSET(OSFastMutexLink, 0x04, prev);
|
||
|
CHECK_SIZE(OSFastMutexLink, 0x08);
|
||
|
|
||
|
struct OSFastMutex
|
||
|
{
|
||
|
static const uint32_t Tag = 0x664D7458;
|
||
|
|
||
|
uint32_t tag;
|
||
|
const char *name;
|
||
|
UNKNOWN(4);
|
||
|
OSThreadSimpleQueue queue;
|
||
|
OSFastMutexLink link;
|
||
|
UNKNOWN(16);
|
||
|
};
|
||
|
CHECK_OFFSET(OSFastMutex, 0x00, tag);
|
||
|
CHECK_OFFSET(OSFastMutex, 0x04, name);
|
||
|
CHECK_OFFSET(OSFastMutex, 0x0c, queue);
|
||
|
CHECK_OFFSET(OSFastMutex, 0x14, link);
|
||
|
CHECK_SIZE(OSFastMutex, 0x2c);
|
||
|
|
||
|
struct OSFastCondition
|
||
|
{
|
||
|
static const uint32_t Tag = 0x664E6456;
|
||
|
|
||
|
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
|
||
|
OSFastMutex_Init(OSFastMutex *mutex, const char *name);
|
||
|
|
||
|
void
|
||
|
OSFastMutex_Lock(OSFastMutex *mutex);
|
||
|
|
||
|
void
|
||
|
OSFastMutex_Unlock(OSFastMutex *mutex);
|
||
|
|
||
|
BOOL
|
||
|
OSFastMutex_TryLock(OSFastMutex *mutex);
|
||
|
|
||
|
void
|
||
|
OSFastCond_Init(OSFastCondition *condition, const char *name);
|
||
|
|
||
|
void
|
||
|
OSFastCond_Wait(OSFastCondition *condition, OSFastMutex *mutex);
|
||
|
|
||
|
void
|
||
|
OSFastCond_Signal(OSFastCondition *condition);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|