disable address space randomisation feature in normal mode.
This commit is contained in:
parent
256610f1d5
commit
0e43db1375
1 changed files with 1 additions and 1 deletions
|
@ -155,7 +155,7 @@ PRIVATE u32_t findhole(pt_t *pt, u32_t vmin, u32_t vmax)
|
|||
vm_assert((vmin % I386_PAGE_SIZE) == 0);
|
||||
vm_assert((vmax % I386_PAGE_SIZE) == 0);
|
||||
|
||||
#if 1
|
||||
#if SANITYCHECKS
|
||||
curv = ((u32_t) random()) % ((vmax - vmin)/I386_PAGE_SIZE);
|
||||
curv *= I386_PAGE_SIZE;
|
||||
curv += vmin;
|
||||
|
|
Loading…
Reference in a new issue