RetroArch
|
Go to the source code of this file.
Classes | |
struct | OSAlarmQueue |
struct | OSAlarmLink |
struct | OSAlarm |
Macros | |
#define | OS_ALARM_QUEUE_TAG 0x614C6D51u |
#define | OS_ALARM_TAG 0x614C724Du |
Typedefs | |
typedef struct OSAlarm | OSAlarm |
typedef void(* | OSAlarmCallback) (OSAlarm *, OSContext *) |
Functions | |
void | OSCreateAlarm (OSAlarm *alarm) |
void | OSCreateAlarmEx (OSAlarm *alarm, const char *name) |
void | OSSetAlarmUserData (OSAlarm *alarm, void *data) |
void * | OSGetAlarmUserData (OSAlarm *alarm) |
void | OSInitAlarmQueue (OSAlarmQueue *queue) |
void | OSInitAlarmQueueEx (OSAlarmQueue *queue, const char *name) |
BOOL | OSSetAlarm (OSAlarm *alarm, OSTime time, OSAlarmCallback callback) |
BOOL | OSSetPeriodicAlarm (OSAlarm *alarm, OSTime start, OSTime interval, OSAlarmCallback callback) |
void | OSSetAlarmTag (OSAlarm *alarm, uint32_t group) |
BOOL | OSCancelAlarm (OSAlarm *alarm) |
void | OSCancelAlarms (uint32_t group) |
BOOL | OSWaitAlarm (OSAlarm *alarm) |
#define OS_ALARM_QUEUE_TAG 0x614C6D51u |
#define OS_ALARM_TAG 0x614C724Du |
void OSInitAlarmQueue | ( | OSAlarmQueue * | queue | ) |
void OSInitAlarmQueueEx | ( | OSAlarmQueue * | queue, |
const char * | name | ||
) |
BOOL OSSetAlarm | ( | OSAlarm * | alarm, |
OSTime | time, | ||
OSAlarmCallback | callback | ||
) |
BOOL OSSetPeriodicAlarm | ( | OSAlarm * | alarm, |
OSTime | start, | ||
OSTime | interval, | ||
OSAlarmCallback | callback | ||
) |