diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-11-20 23:48:11 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-11-20 23:48:11 -0800 |
commit | 7a4383cf13819cd2ef00f0d60318aad3f1813117 (patch) | |
tree | 7909507115206e773783940871aeb380df778d07 /compat/mingw.c | |
parent | Merge branch 'rj/maint-simplify-cygwin-makefile' (diff) | |
parent | MSVC: Add support for building with NO_MMAP (diff) | |
download | tgif-7a4383cf13819cd2ef00f0d60318aad3f1813117.tar.xz |
Merge branch 'rj/cygwin-msvc'
* rj/cygwin-msvc:
MSVC: Add support for building with NO_MMAP
Makefile: keep MSVC and Cygwin configuration separate
Diffstat (limited to 'compat/mingw.c')
-rw-r--r-- | compat/mingw.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/compat/mingw.c b/compat/mingw.c index 6b5b5b2c70..15fe33eaa0 100644 --- a/compat/mingw.c +++ b/compat/mingw.c @@ -1000,6 +1000,18 @@ repeat: return -1; } +/* + * Note that this doesn't return the actual pagesize, but + * the allocation granularity. If future Windows specific git code + * needs the real getpagesize function, we need to find another solution. + */ +int mingw_getpagesize(void) +{ + SYSTEM_INFO si; + GetSystemInfo(&si); + return si.dwAllocationGranularity; +} + struct passwd *getpwuid(int uid) { static char user_name[100]; |