X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=compat%2Fmmap.c;h=c9d46d174259f42a3e2a2eb073475aba517044be;hb=452c6d506b1a6dcf24d4ceaa592afc39c1c1a60e;hp=55cb120764da5520da7dbd91193a285551eae8bb;hpb=0a8f4f0020cb35095005852c0797f0b90e9ebb74;p=git.git diff --git a/compat/mmap.c b/compat/mmap.c index 55cb12076..c9d46d174 100644 --- a/compat/mmap.c +++ b/compat/mmap.c @@ -1,20 +1,11 @@ -#include -#include -#include -#include #include "../git-compat-util.h" -void *gitfakemmap(void *start, size_t length, int prot , int flags, int fd, off_t offset) +void *git_mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset) { - int n = 0; + size_t n = 0; if (start != NULL || !(flags & MAP_PRIVATE)) - die("Invalid usage of gitfakemmap."); - - if (lseek(fd, offset, SEEK_SET) < 0) { - errno = EINVAL; - return MAP_FAILED; - } + die("Invalid usage of mmap when built with NO_MMAP"); start = xmalloc(length); if (start == NULL) { @@ -23,14 +14,16 @@ void *gitfakemmap(void *start, size_t length, int prot , int flags, int fd, off_ } while (n < length) { - int count = read(fd, start+n, length-n); + ssize_t count = pread(fd, (char *)start + n, length - n, offset + n); if (count == 0) { - memset(start+n, 0, length-n); + memset((char *)start+n, 0, length-n); break; } if (count < 0) { + if (errno == EAGAIN || errno == EINTR) + continue; free(start); errno = EACCES; return MAP_FAILED; @@ -42,9 +35,8 @@ void *gitfakemmap(void *start, size_t length, int prot , int flags, int fd, off_ return start; } -int gitfakemunmap(void *start, size_t length) +int git_munmap(void *start, size_t length) { free(start); return 0; } -