diff options
| author | Vicent Marti <tanoku@gmail.com> | 2012-06-22 20:48:50 +0200 |
|---|---|---|
| committer | Vicent Marti <tanoku@gmail.com> | 2012-06-22 20:48:50 +0200 |
| commit | 2ae052d1b1574d1a4de402c91ebb98f061c997d4 (patch) | |
| tree | b300607ad284ef97e5b0d09cf519905f84668174 /src/pool.c | |
| parent | 430af731d259053691b0de9b18917f7adf97021a (diff) | |
| parent | db5a6ec72b63c986cca764c75f9d3d720cff44ef (diff) | |
| download | libgit2-2ae052d1b1574d1a4de402c91ebb98f061c997d4.tar.gz | |
Merge branch 'pull-req' of https://github.com/chris-y/libgit2 into amigaos
Diffstat (limited to 'src/pool.c')
| -rw-r--r-- | src/pool.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pool.c b/src/pool.c index 641292d06..63bf09cee 100644 --- a/src/pool.c +++ b/src/pool.c @@ -275,6 +275,8 @@ uint32_t git_pool__system_page_size(void) SYSTEM_INFO info; GetSystemInfo(&info); size = (uint32_t)info.dwPageSize; +#elif defined(__amigaos4__) + size = (uint32_t)4096; /* 4K as there is no global value we can query */ #else size = (uint32_t)sysconf(_SC_PAGE_SIZE); #endif |
