ARM: Move the mmap region to where Linux actually has it.
authorGabe Black <gblack@eecs.umich.edu>
Wed, 2 Jun 2010 17:58:04 +0000 (12:58 -0500)
committerGabe Black <gblack@eecs.umich.edu>
Wed, 2 Jun 2010 17:58:04 +0000 (12:58 -0500)
src/arch/arm/process.cc

index 3c51c80a79e43e3885100dad7bf66a1090aa82f1..82e0a107f91d66402645a99d647cbea6fd5d7c43 100644 (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