We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00f0491 commit 20f8b02Copy full SHA for 20f8b02
src/trusted/service_runtime/linux/nacl_bootstrap.x
@@ -107,9 +107,9 @@ SECTIONS {
107
* It just maps it from the file, i.e. way off the end of the file,
108
* which is perfect for reserving the address space.
109
*/
110
- . = ALIGN(CONSTANT(COMMONPAGESIZE));
+ . = ALIGN(CONSTANT(MAXPAGESIZE));
111
RESERVE_START = .;
112
- .reserve : {
+ .reserve : ALIGN(CONSTANT(MAXPAGESIZE)) {
113
. += (RESERVE_TOP > RESERVE_START) ? (RESERVE_TOP - RESERVE_START) : 0;
114
} :reserve
115
0 commit comments