InitializeAlarmSystem

nn::os::InitializeAlarmSystem Function

Syntax

#include <nn/os.h>

void InitializeAlarmSystem(
     s32 priority = 0
);

Parameters

Name Description
in priority The priority of the threads for executing alarm handlers.

Return Values

None.

Description

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.

Revision History

2011/06/22
Added text.
2010/01/07
Initial version.

CONFIDENTIAL