ARM: Move the mmap region to where Linux actually has it.

This commit is contained in:
Gabe Black 2010-06-02 12:58:04 -05:00
parent a8eb9d521c
commit d5aee75efe

View file

@ -57,7 +57,7 @@ ArmLiveProcess::ArmLiveProcess(LiveProcessParams *params, ObjectFile *objFile,
brk_point = roundUp(brk_point, VMPageSize);
// Set up region for mmaps. For now, start at bottom of kuseg space.
mmap_start = mmap_end = 0x70000000L;
mmap_start = mmap_end = 0x40000000L;
}
void