diff options
Diffstat (limited to 'llvm/lib/Support/Unix/Process.inc')
-rw-r--r-- | llvm/lib/Support/Unix/Process.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Support/Unix/Process.inc b/llvm/lib/Support/Unix/Process.inc index cd244f69e74..47d0a3c794d 100644 --- a/llvm/lib/Support/Unix/Process.inc +++ b/llvm/lib/Support/Unix/Process.inc @@ -88,8 +88,8 @@ TimeValue self_process::get_system_time() const { return getRUsageTimes().second; } -// On Cygwin, getpagesize() returns 64k and offset in mmap(3) should be -// aligned to its pagesize. +// On Cygwin, getpagesize() returns 64k(AllocationGranularity) and +// offset in mmap(3) should be aligned to the AllocationGranularity. static unsigned getPageSize() { #if defined(HAVE_GETPAGESIZE) const int page_size = ::getpagesize(); |