Re: Question about memory-mapped files

From: Hugh Dickins (hugh@veritas.com)
Date: Wed May 28 2003 - 12:28:21 EST


On Wed, 28 May 2003, John M Collins wrote:
>
> If I invoke mmap to map a file to memory, and it succeeds, can I safely
> close the original file descriptor and rely on the memory still being
> mapped and the file still updated (possibly with mysnc)?

Yes, that's definitely a part of the specification of mmap,
even if it's not mentioned on the man page.

Note that the file on disk is likely not to be updated until
some time after you unmap it, unless you use msync to force it.

Hugh

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/