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 b22ff77 commit 3fd5f12Copy full SHA for 3fd5f12
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