nn::os::InitializeAlarmSystem Function#include <nn/os.h>
void InitializeAlarmSystem(
s32 priority = 0
);
| Name | Description | |
|---|---|---|
| in | priority | The priority of the threads for executing alarm handlers. |
Initializes the alarm system.
(This function may be deleted in the future.)
The function prepares internal threads for handling the OS alarm features. In the current implementation, a total of three threads are created: one for managing alarm events and two for executing alarm handlers.
You can use the priority argument to specify a priority for the threads that execute the alarm handlers.
CONFIDENTIAL