summaryrefslogtreecommitdiff
path: root/compat/mmap.c
AgeCommit message (Collapse)AuthorFilesLines
2005-10-08Yank writing-back support from gitfakemmap.Libravatar Junio C Hamano1-69/+6
We do not write through our use of mmap(), so make sure callers pass MAP_PRIVATE and remove support for writing changes back. Signed-off-by: Junio C Hamano <junkio@cox.net>
2005-10-08[PATCH] If NO_MMAP is defined, fake mmap() and munmap()Libravatar Johannes Schindelin1-0/+113
Since some platforms do not support mmap() at all, and others do only just so, this patch introduces the option to fake mmap() and munmap() by malloc()ing and read()ing explicitely. Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>