From 7ab7bf46b8675c8f5981daabe7e8a4591676d0d1 Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Fri, 22 Feb 2019 11:32:01 +0000 Subject: p_fallocate: don't duplicate definitions for win32 --- src/posix.c | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/posix.c b/src/posix.c index ef48c6012..242fda8c6 100644 --- a/src/posix.c +++ b/src/posix.c @@ -155,6 +155,23 @@ int p_rename(const char *from, const char *to) return -1; } +int p_fallocate(int fd, off_t offset, off_t len) +{ +#ifdef __APPLE__ + fstore_t prealloc; + + memset(&prealloc, 0, sizeof(prealloc)); + prealloc.fst_flags = F_ALLOCATEALL; + prealloc.fst_posmode = F_PEOFPOSMODE; + prealloc.fst_offset = offset; + prealloc.fst_length = len; + + return fcntl(fd, F_PREALLOCATE, &prealloc); +#else + return posix_fallocate(fd, offset, len); +#endif +} + #endif /* GIT_WIN32 */ ssize_t p_read(git_file fd, void *buf, size_t cnt) @@ -216,23 +233,6 @@ int p_write(git_file fd, const void *buf, size_t cnt) return 0; } -int p_fallocate(int fd, off_t offset, off_t len) -{ -#ifdef __APPLE__ - fstore_t prealloc; - - memset(&prealloc, 0, sizeof(prealloc)); - prealloc.fst_flags = F_ALLOCATEALL; - prealloc.fst_posmode = F_PEOFPOSMODE; - prealloc.fst_offset = offset; - prealloc.fst_length = len; - - return fcntl(fd, F_PREALLOCATE, &prealloc); -#else - return posix_fallocate(fd, offset, len); -#endif -} - #ifdef NO_MMAP #include "map.h" -- cgit v1.2.1