nn::ro::FixLevel Enumerated Type

Syntax

enum FixLevel;

Value

Value Description
FIX_LEVEL_0 Alias for FIX_LEVEL_NONE.
FIX_LEVEL_1 Alias for FIX_LEVEL_INTERNAL.
FIX_LEVEL_2 Alias for FIX_LEVEL_INTERNAL_IMPORT.
FIX_LEVEL_3 Alias for FIX_LEVEL_INTERNAL_IMPORT.
FIX_LEVEL_NONE Memory is not released.
FIX_LEVEL_INTERNAL Releases memory storing data used for internal relocation.
FIX_LEVEL_INTERNAL_IMPORT Releases memory storing data required to reference symbols of other modules and for internal relocation.
FIX_LEVEL_INTERNAL_IMPORT_EXPORT Releases memory storing data required for internal relocation, referencing symbols in other modules, and referencing symbols included in the module in question.
FIX_LEVEL_MAX_BITS

Description

This enumerated type is used to represent the level of memory to be released when LoadModule executes successfully.

The greater the amount of memory released, the stricter the restrictions.

FIX_LEVEL_NONE

No memory is released and all functions are available.

FIX_LEVEL_INTERNAL

The following operations are unavailable.

The following operations are available.

FIX_LEVEL_INTERNAL_IMPORT

The following operations are unavailable.

The following operations are available.

FIX_LEVEL_INTERNAL_IMPORT_EXPORT

The following operations are unavailable.

The following operation is available.

Revision History

2011/07/29
Initial version.

CONFIDENTIAL