nninitStartUp Function

Syntax

void nninitStartUp(
     void
);

Arguments

None.

Return Values

None.

Description

Startup routine for applications.

Runs before nnMain is called. The default implementation is compiled with weak symbols, so the developer can override it.

With the default implementation, this function does the following. nn::init::InitializeAllocator (8MB); nn::os::InitializeDeviceMemory (); We strongly recommend that you only override this function to initialize the OS library and heap.

Revision History

2010/01/07
Initial version.

CONFIDENTIAL