From: Michael V. <mi...@bl...> - 2001-06-11 19:43:06
|
On Mon, 11 Jun 2001, Michael Stout wrote: > P.S. I have seen threads about the intrinsic differences between > linux/posix > mmap and NT memory management. does it just have to do with the allocation > granularity? Yes, allocation granularity is the main problem. Linux can mmap on a page granularity, but all the Win32 implementations that I know of can only do 64K. A couple months ago Erik Paulson mentioned that the native NT api function ZwMapViewOfSection() may be able to allocate at a page granluarity. He mentioned that he'd try to take a look at it, but I guess he didn't have the time. http://www.geocrawler.com/archives/3/10551/2001/4/0/5575403/ Mike |