-
Notifications
You must be signed in to change notification settings - Fork 213
About Prebuilt Image
PanQL edited this page Apr 22, 2020
·
5 revisions
size_t reserve_size = (((info.base + info.len) / 2) + PAGE_SIZE - 1) & -PAGE_SIZE;in zircon/system/lib/launchpad/launchpad.c line 464 changed like this:
size_t reserve_size = (info.base + info.len / 2 + PAGE_SIZE - 1) & -PAGE_SIZE;let reserve_size = util::page_end((info.base + info.len) / 2) - info.base;in src/lib/process_builder/src/lib.rs line 802 changed like this:
let reserve_size = util::page_end(info.len / 2);