comment typo fix to cycle bots

This commit is contained in:
Nico Weber 2019-10-30 22:17:52 -04:00
parent e9f9dfab82
commit 4138fc9567
1 changed files with 2 additions and 2 deletions

View File

@ -131,8 +131,8 @@ public:
protected:
// On FreeBSD x86_64 the first page cannot be mmaped.
// On Linux that is controled by vm.mmap_min_addr. At least on some x86_64
// installs that is 65536, so the first 15 pages cannot be used.
// On Linux this is controlled by vm.mmap_min_addr. At least on some x86_64
// installs this is set to 65536, so the first 15 pages cannot be used.
// Given that, the smallest value that can be used in here is 0x10000.
uint64_t defaultImageBase = 0x10000;
};