Re: [MASSMAIL][PATCH] kernel32: implement GetLargePageMinimum
14 Jun
2016
14 Jun
'16
6:29 a.m.
Marcus Meissner <marcus(a)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.
3471
Age (days ago)
3471
Last active (days ago)
0 comments
1 participants
participants (1)
-
Dmitry Timoshkov