nn::ro::RegionInfoStructurestruct RegionInfo
{
uptr mapBegin;
size_t mapSize;
uptr croBegin;
size_t croSize;
uptr dataBssBegin;
size_t dataBssSize;
uptr codeBegin;
size_t codeSize;
};
This structure stores information about the memory region being used by a cro.
| 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. |
CONFIDENTIAL