mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-07 10:58:13 +01:00
Start doxygen documentation.
This commit is contained in:
parent
c6de879cbc
commit
1145044517
2459
docs/Doxyfile
Normal file
2459
docs/Doxyfile
Normal file
File diff suppressed because it is too large
Load Diff
10
docs/mainpage.dox
Normal file
10
docs/mainpage.dox
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
/**
|
||||||
|
* \mainpage Wii U Toolchain
|
||||||
|
*
|
||||||
|
* \section Introduction
|
||||||
|
* An experimental in-development Wii U toolchain, the source can be found at
|
||||||
|
* https://github.com/decaf-emu/wut
|
||||||
|
*
|
||||||
|
* \section Usage
|
||||||
|
* TODO.
|
||||||
|
*/
|
@ -4,6 +4,19 @@
|
|||||||
#include "threadqueue.h"
|
#include "threadqueue.h"
|
||||||
#include "time.h"
|
#include "time.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_alarms Alarms
|
||||||
|
* \ingroup coreinit
|
||||||
|
*
|
||||||
|
* The alarm family of functions are used for creating alarms which call
|
||||||
|
* a callback or wake up waiting threads after a period of time.
|
||||||
|
*
|
||||||
|
* Alarms can be one shot alarms which trigger once after a period of time,
|
||||||
|
* or periodic which trigger at regular intervals until they are cancelled.
|
||||||
|
*
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -48,23 +61,47 @@ CHECK_SIZE(OSAlarmLink, 0x08);
|
|||||||
#define OS_ALARM_TAG 0x614C724Du
|
#define OS_ALARM_TAG 0x614C724Du
|
||||||
struct OSAlarm
|
struct OSAlarm
|
||||||
{
|
{
|
||||||
// OS_ALARM_TAG
|
//! Should always be set to the value OS_ALARM_TAG.
|
||||||
uint32_t tag;
|
uint32_t tag;
|
||||||
|
|
||||||
// Name set from OSCreateAlarmEx
|
//! Name set from OSCreateAlarmEx.
|
||||||
const char *name;
|
const char *name;
|
||||||
|
|
||||||
UNKNOWN(4);
|
UNKNOWN(4);
|
||||||
|
|
||||||
|
//! The callback to execute once the alarm is triggered.
|
||||||
OSAlarmCallback callback;
|
OSAlarmCallback callback;
|
||||||
|
|
||||||
|
//! Used with OSCancelAlarms for bulk cancellation of alarms.
|
||||||
uint32_t group;
|
uint32_t group;
|
||||||
|
|
||||||
UNKNOWN(4);
|
UNKNOWN(4);
|
||||||
|
|
||||||
|
//! The time when the alarm will next be triggered.
|
||||||
OSTime nextFire;
|
OSTime nextFire;
|
||||||
|
|
||||||
|
//! Link used for when this OSAlarm object is inside an OSAlarmQueue
|
||||||
OSAlarmLink link;
|
OSAlarmLink link;
|
||||||
|
|
||||||
|
//! The period between alarm triggers, this is only set for periodic alarms.
|
||||||
OSTime period;
|
OSTime period;
|
||||||
OSTime tbrStart;
|
|
||||||
|
//! The time the alarm was started.
|
||||||
|
OSTime start;
|
||||||
|
|
||||||
|
//! User data set with OSSetAlarmUserData and retrieved with OSGetAlarmUserData.
|
||||||
void *userData;
|
void *userData;
|
||||||
|
|
||||||
|
//! The current state of the alarm, internal values.
|
||||||
uint32_t state;
|
uint32_t state;
|
||||||
|
|
||||||
|
//! Queue of threads currently waiting for the alarm to trigger with OSWaitAlarm.
|
||||||
OSThreadQueue threadQueue;
|
OSThreadQueue threadQueue;
|
||||||
|
|
||||||
|
//! The queue that this alarm is currently in.
|
||||||
OSAlarmQueue *alarmQueue;
|
OSAlarmQueue *alarmQueue;
|
||||||
|
|
||||||
|
//! The context the alarm was triggered on.
|
||||||
OSContext *context;
|
OSContext *context;
|
||||||
};
|
};
|
||||||
CHECK_OFFSET(OSAlarm, 0x00, tag);
|
CHECK_OFFSET(OSAlarm, 0x00, tag);
|
||||||
@ -82,51 +119,112 @@ CHECK_OFFSET(OSAlarm, 0x50, alarmQueue);
|
|||||||
CHECK_OFFSET(OSAlarm, 0x54, context);
|
CHECK_OFFSET(OSAlarm, 0x54, context);
|
||||||
CHECK_SIZE(OSAlarm, 0x58);
|
CHECK_SIZE(OSAlarm, 0x58);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Cancel an alarm.
|
||||||
|
*/
|
||||||
BOOL
|
BOOL
|
||||||
OSCancelAlarm(OSAlarm *alarm);
|
OSCancelAlarm(OSAlarm *alarm);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Cancel all alarms which have a matching tag set by OSSetAlarmTag.
|
||||||
|
*
|
||||||
|
* \param group The alarm tag to cancel.
|
||||||
|
*/
|
||||||
void
|
void
|
||||||
OSCancelAlarms(uint32_t group);
|
OSCancelAlarms(uint32_t group);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialise an alarm structure.
|
||||||
|
*/
|
||||||
void
|
void
|
||||||
OSCreateAlarm(OSAlarm *alarm);
|
OSCreateAlarm(OSAlarm *alarm);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialise an alarm structure with a name.
|
||||||
|
*/
|
||||||
void
|
void
|
||||||
OSCreateAlarmEx(OSAlarm *alarm,
|
OSCreateAlarmEx(OSAlarm *alarm,
|
||||||
const char *name);
|
const char *name);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return user data set by OSSetAlarmUserData.
|
||||||
|
*/
|
||||||
void *
|
void *
|
||||||
OSGetAlarmUserData(OSAlarm *alarm);
|
OSGetAlarmUserData(OSAlarm *alarm);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialise an alarm queue structure.
|
||||||
|
*/
|
||||||
void
|
void
|
||||||
OSInitAlarmQueue(OSAlarmQueue *queue);
|
OSInitAlarmQueue(OSAlarmQueue *queue);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialise an alarm queue structure with a name.
|
||||||
|
*/
|
||||||
void
|
void
|
||||||
OSInitAlarmQueueEx(OSAlarmQueue *queue,
|
OSInitAlarmQueueEx(OSAlarmQueue *queue,
|
||||||
const char *name);
|
const char *name);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set a one shot alarm to perform a callback after a set amount of time.
|
||||||
|
*
|
||||||
|
* \param alarm The alarm to set.
|
||||||
|
* \param time The duration until the alarm should be triggered.
|
||||||
|
* \param callback The alarm callback to call when the alarm is triggered.
|
||||||
|
*/
|
||||||
BOOL
|
BOOL
|
||||||
OSSetAlarm(OSAlarm *alarm,
|
OSSetAlarm(OSAlarm *alarm,
|
||||||
OSTime time,
|
OSTime time,
|
||||||
AlarmCallback callback);
|
OSAlarmCallback callback);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set a repeated alarm to execute a callback every interval from start.
|
||||||
|
*
|
||||||
|
* \param alarm The alarm to set.
|
||||||
|
* \param start The duration until the alarm should first be triggered.
|
||||||
|
* \param interval The interval between triggers after the first trigger.
|
||||||
|
* \param callback The alarm callback to call when the alarm is triggered.
|
||||||
|
*/
|
||||||
BOOL
|
BOOL
|
||||||
OSSetPeriodicAlarm(OSAlarm *alarm,
|
OSSetPeriodicAlarm(OSAlarm *alarm,
|
||||||
OSTime start,
|
OSTime start,
|
||||||
OSTime interval,
|
OSTime interval,
|
||||||
AlarmCallback callback);
|
OSAlarmCallback callback);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set an alarm tag which is used in OSCancelAlarms for bulk cancellation.
|
||||||
|
*/
|
||||||
void
|
void
|
||||||
OSSetAlarmTag(OSAlarm *alarm,
|
OSSetAlarmTag(OSAlarm *alarm,
|
||||||
uint32_t group);
|
uint32_t group);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set alarm user data which is returned by OSGetAlarmUserData.
|
||||||
|
*/
|
||||||
void
|
void
|
||||||
OSSetAlarmUserData(OSAlarm *alarm,
|
OSSetAlarmUserData(OSAlarm *alarm,
|
||||||
void *data);
|
void *data);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sleep the current thread until the alarm has been triggered or cancelled.
|
||||||
|
*/
|
||||||
BOOL
|
BOOL
|
||||||
OSWaitAlarm(OSAlarm *alarm);
|
OSWaitAlarm(OSAlarm *alarm);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -1,6 +1,14 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_atomic64 Atomic 64 bit
|
||||||
|
* \ingroup coreinit
|
||||||
|
*
|
||||||
|
* These functions are used for atomically operating on 64 bit values in memory.
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -54,3 +62,5 @@ OSTestAndSetAtomic64(uint64_t *ptr,
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_baseheap Base Heap
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -28,3 +34,5 @@ MEMSetBaseHeapHandle(MEMBaseHeapType type,
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_cache Cache
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -36,3 +42,5 @@ DCTouchRange(void *addr,
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -2,6 +2,12 @@
|
|||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
#include "threadqueue.h"
|
#include "threadqueue.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_cond Condition Variable
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -13,15 +19,15 @@ typedef struct OSMutex OSMutex;
|
|||||||
|
|
||||||
struct OSCondition
|
struct OSCondition
|
||||||
{
|
{
|
||||||
// OS_CONDITION_TAG
|
//! Should always be set to the value OS_CONDITION_TAG.
|
||||||
uint32_t tag;
|
uint32_t tag;
|
||||||
|
|
||||||
// Name set by OSInitCondEx(condition, name)
|
//! Name set by OSInitCondEx.
|
||||||
const char *name;
|
const char *name;
|
||||||
|
|
||||||
UNKNOWN(4);
|
UNKNOWN(4);
|
||||||
|
|
||||||
// Queue of threads waiting on condition
|
//! Queue of threads currently waiting on condition with OSWaitCond.
|
||||||
OSThreadQueue queue;
|
OSThreadQueue queue;
|
||||||
};
|
};
|
||||||
CHECK_OFFSET(OSCondition, 0x00, tag);
|
CHECK_OFFSET(OSCondition, 0x00, tag);
|
||||||
@ -46,3 +52,5 @@ OSSignalCond(OSCondition *condition);
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -1,22 +1,47 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_core Core Identification
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the number of cores, should always be 3.
|
||||||
|
*/
|
||||||
uint32_t
|
uint32_t
|
||||||
OSGetCoreCount();
|
OSGetCoreCount();
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the ID of the core currently executing this thread.
|
||||||
|
*/
|
||||||
uint32_t
|
uint32_t
|
||||||
OSGetCoreId();
|
OSGetCoreId();
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the ID of the main core.
|
||||||
|
*/
|
||||||
uint32_t
|
uint32_t
|
||||||
OSGetMainCoreId();
|
OSGetMainCoreId();
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns true if the current core is the main core.
|
||||||
|
*/
|
||||||
BOOL
|
BOOL
|
||||||
OSIsMainCore();
|
OSIsMainCore();
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -1,25 +1,38 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_debug Debug
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
OSConsoleWrite(const char *msg,
|
OSConsoleWrite(const char *msg,
|
||||||
uint32_t size);
|
uint32_t size);
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
OSReport(const char *fmt, ...);
|
OSReport(const char *fmt, ...);
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
OSPanic(const char *file,
|
OSPanic(const char *file,
|
||||||
uint32_t line,
|
uint32_t line,
|
||||||
const char *fmt, ...);
|
const char *fmt, ...);
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
OSFatal(const char *msg);
|
OSFatal(const char *msg);
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -3,6 +3,12 @@
|
|||||||
#include "thread.h"
|
#include "thread.h"
|
||||||
#include "time.h"
|
#include "time.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_dynload Dynamic Loading
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -12,27 +18,57 @@ typedef void *OSDynLoadModule;
|
|||||||
typedef int (*OSDynLoadAllocFn)(int size, int align, void **outAddr);
|
typedef int (*OSDynLoadAllocFn)(int size, int align, void **outAddr);
|
||||||
typedef void (*OSDynLoadFreeFn)(void *addr);
|
typedef void (*OSDynLoadFreeFn)(void *addr);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the allocator function to use for dynamic loading.
|
||||||
|
*/
|
||||||
int32_t
|
int32_t
|
||||||
OSDynLoad_SetAllocator(OSDynLoadAllocFn allocFn,
|
OSDynLoad_SetAllocator(OSDynLoadAllocFn allocFn,
|
||||||
OSDynLoadFreeFn freeFn);
|
OSDynLoadFreeFn freeFn);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the allocator function used for dynamic loading.
|
||||||
|
*/
|
||||||
int32_t
|
int32_t
|
||||||
OSDynLoad_GetAllocator(OSDynLoadAllocFn *outAllocFn,
|
OSDynLoad_GetAllocator(OSDynLoadAllocFn *outAllocFn,
|
||||||
OSDynLoadFreeFn *outFreeFn);
|
OSDynLoadFreeFn *outFreeFn);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load a module.
|
||||||
|
*
|
||||||
|
* If the module is already loaded, increase reference count.
|
||||||
|
* Similar to LoadLibrary on Windows.
|
||||||
|
*/
|
||||||
int32_t
|
int32_t
|
||||||
OSDynLoad_Acquire(char const *name,
|
OSDynLoad_Acquire(char const *name,
|
||||||
OSDynLoadModule *outModule);
|
OSDynLoadModule *outModule);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve the address of a function or data export from a module.
|
||||||
|
*
|
||||||
|
* Similar to GetProcAddress on Windows.
|
||||||
|
*/
|
||||||
int32_t
|
int32_t
|
||||||
OSDynLoad_FindExport(OSDynLoadModule module,
|
OSDynLoad_FindExport(OSDynLoadModule module,
|
||||||
int32_t isData,
|
int32_t isData,
|
||||||
char const *name,
|
char const *name,
|
||||||
void **outAddr);
|
void **outAddr);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Free a module handle returned from OSDynLoad_Acquire.
|
||||||
|
*
|
||||||
|
* Will decrease reference count and only unload the module if count reaches 0.
|
||||||
|
* Similar to FreeLibrary on Windows.
|
||||||
|
*/
|
||||||
void
|
void
|
||||||
OSDynLoad_Release(OSDynLoadModule module);
|
OSDynLoad_Release(OSDynLoadModule module);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -3,6 +3,12 @@
|
|||||||
#include "thread.h"
|
#include "thread.h"
|
||||||
#include "threadqueue.h"
|
#include "threadqueue.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_event Event Object
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -66,3 +72,5 @@ OSWaitEventWithTimeout(OSEvent *event,
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_exception Exception Handling
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -39,3 +45,5 @@ OSSetExceptionCallbackEx(UNKNOWN_ARG,
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_exit Exit
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -14,3 +20,5 @@ _Exit();
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_expheap Expanded Heap
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -87,3 +93,5 @@ MEMGetAllocDirForMBlockExpHeap(uint8_t *addr);
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -2,6 +2,15 @@
|
|||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
#include "threadqueue.h"
|
#include "threadqueue.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_fastcond Fast Condition Variable
|
||||||
|
* \ingroup coreinit
|
||||||
|
*
|
||||||
|
* A condition variable to be used with an OSFastMutex.
|
||||||
|
*
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -37,3 +46,5 @@ OSFastCond_Signal(OSFastCondition *condition);
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -2,6 +2,12 @@
|
|||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
#include "threadqueue.h"
|
#include "threadqueue.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_fastmutex Fast Mutex
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -51,3 +57,5 @@ OSFastMutex_TryLock(OSFastMutex *mutex);
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_frameheap Frame Heap
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -64,3 +70,5 @@ MEMGetAllocatableSizeForFrmHeapEx(MEMFrameHeap *heap,
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_memlist Memory List
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -64,3 +70,5 @@ MEMGetNthListObject(MEMMEMMemoryList *list,
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_msgq Message Queue
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -84,3 +90,5 @@ OSGetSystemMessageQueue();
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -2,6 +2,12 @@
|
|||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
#include "threadqueue.h"
|
#include "threadqueue.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_mutex Mutex
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -71,3 +77,5 @@ OSTryLockMutex(OSMutex *mutex);
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_rendezvous Rendezvous
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -32,3 +38,5 @@ OSWaitRendezvousWithTimeout(OSRendezvous *rendezvous,
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -2,6 +2,12 @@
|
|||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
#include "threadqueue.h"
|
#include "threadqueue.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_semaphore Semaphore
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -48,3 +54,5 @@ OSTryWaitSemaphore(OSSemaphore *semaphore);
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -2,6 +2,12 @@
|
|||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
#include "time.h"
|
#include "time.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_spinlock Spinlock
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -53,3 +59,5 @@ OSUninterruptibleSpinLock_Release(OSSpinLock *spinlock);
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -2,6 +2,12 @@
|
|||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
#include "time.h"
|
#include "time.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_taskq Task Queue
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -183,3 +189,5 @@ MPRunTask(MPTask *task);
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -3,6 +3,12 @@
|
|||||||
#include "time.h"
|
#include "time.h"
|
||||||
#include "threadqueue.h"
|
#include "threadqueue.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_thread Thread
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -326,3 +332,5 @@ OSYieldThread();
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_threadq Thread Queue
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -51,3 +57,5 @@ OSInitThreadQueueEx(OSThreadQueue *queue,
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_time Time
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -49,3 +55,5 @@ OSTicksToCalendarTime(OSTime time,
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_unitheap Unit Heap
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -43,3 +49,5 @@ MEMCalcHeapSizeForUnitHeap(uint32_t blockSize,
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <wut.h>
|
#include <wut.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup gx2_state State
|
||||||
|
* \ingroup gx2
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@ -25,3 +31,5 @@ GX2Shutdown();
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
Loading…
Reference in New Issue
Block a user