From: Rich Felker Date: Thu, 31 Jul 2014 03:19:43 +0000 (-0400) Subject: provide PAGE_SIZE as a constant value of 8192 on or1k X-Git-Tag: v1.1.4~8 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=cc54f0aebad529c1abfa49d2d9e319267d57cb9f;p=oweals%2Fmusl.git provide PAGE_SIZE as a constant value of 8192 on or1k according to Stefan Kristiansson, or1k page size is not actually variable and the value of 8192 is part of the ABI. --- diff --git a/arch/or1k/bits/limits.h b/arch/or1k/bits/limits.h index fbc6d238..483b6749 100644 --- a/arch/or1k/bits/limits.h +++ b/arch/or1k/bits/limits.h @@ -1,5 +1,6 @@ #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \ || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE) +#define PAGE_SIZE 8192 #define LONG_BIT 32 #endif