nn::ro::RegionInfoStructure

Syntax

struct RegionInfo
{
   uptr mapBegin;
   size_t mapSize;
   uptr croBegin;
   size_t croSize;
   uptr dataBssBegin;
   size_t dataBssSize;
   uptr codeBegin;
   size_t codeSize;
};

Description

This structure stores information about the memory region being used by a cro.

Member Variables

mapBegin uptr Starting address of the memory region used by a cro.
mapSize size_t Size of the memory region used by a cro.
croBegin uptr Starting address of the memory region of the cro passed to LoadModule.
croSize size_t Size of the cro memory region passed to LoadModule.
dataBssBegin uptr Starting address of the memory region for the .data/.bss section.
dataBssSize size_t Size of the memory region for the .data/.bss section.
codeBegin uptr Starting address of the executable code region.
codeSize size_t Size of the executable code region.

Revision History

2012/04/20
Initial version.

CONFIDENTIAL