1.5.19 src/winsup/cygwin/mmap.cc msync() still calling getpagesize rather than getsystempagesize

2006-08-16 Thread Donna Jecha
In the function msync in the file src/winsup/cygwin/mmap.cc, the declaration for pagesize goes out of its way to invoke either getsystempagesize -or- getpagesize(): 1366    size_t pagesize = wincap.has_mmap_alignment_bug () ? 1367  getsystempagesize () : getpagesize ();

Re: 1.5.19 src/winsup/cygwin/mmap.cc msync() still calling getpagesize rather than getsystempagesize

2006-08-16 Thread Corinna Vinschen
On Aug 16 11:43, Donna Jecha wrote: In the function msync in the file src/winsup/cygwin/mmap.cc, the declaration for pagesize goes out of its way to invoke either getsystempagesize -or- getpagesize(): 1366    size_t pagesize = wincap.has_mmap_alignment_bug () ? 1367