Module: wine Branch: master Commit: 7dca3d139cd52a3d0906c284465d4061fa4e7b17 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7dca3d139cd52a3d0906c28446...
Author: Austin English austinenglish@gmail.com Date: Fri Jun 17 03:46:34 2016 -0500
kernel32: Implement GetLargePageMinimum for arm.
Signed-off-by: Austin English austinenglish@gmail.com Signed-off-by: André Hentschel nerv@dawncrow.de Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/kernel32/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/kernel32/cpu.c b/dlls/kernel32/cpu.c index 3a7a5e8..72a9d13 100644 --- a/dlls/kernel32/cpu.c +++ b/dlls/kernel32/cpu.c @@ -297,7 +297,7 @@ err: */ SIZE_T WINAPI GetLargePageMinimum(void) { -#if defined(__i386___) || defined(__x86_64__) +#if defined(__i386___) || defined(__x86_64__) || defined(__arm__) return 2 * 1024 * 1024; #endif FIXME("Not implemented on your platform/architecture.\n");