[MASSMAIL][PATCH] kernel32: implement GetLargePageMinimum

Dmitry Timoshkov dmitry at baikal.ru
Tue Jun 14 01:29:16 CDT 2016


Marcus Meissner <marcus at jet.franken.de> wrote:

> +SIZE_T WINAPI GetLargePageMinimum(void)
> +{
> +#ifdef linux
> +#ifdef __i386__
> +    /* Linux x86 hugepages are 2 MB */
> +    return 2*1024*1024;
> +#endif
> +#endif
> +    FIXME("stub: not implemented on your platform/architecture.\n");
> +    return 0;
> +}

What's the reason of making it linux only and excluding x86_64?

-- 
Dmitry.



More information about the wine-devel mailing list