Commit 6b5db63c by Chris Young

random page size for os4

parent c41fc475
...@@ -275,6 +275,8 @@ uint32_t git_pool__system_page_size(void) ...@@ -275,6 +275,8 @@ uint32_t git_pool__system_page_size(void)
SYSTEM_INFO info; SYSTEM_INFO info;
GetSystemInfo(&info); GetSystemInfo(&info);
size = (uint32_t)info.dwPageSize; size = (uint32_t)info.dwPageSize;
#elif defined(__amigaos4__)
size = (uint32_t)1000000; // random value
#else #else
size = (uint32_t)sysconf(_SC_PAGE_SIZE); size = (uint32_t)sysconf(_SC_PAGE_SIZE);
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment