Dear experts,

Is there a way to find out the Virtual Memory page size on an ARM and x86
platform? I will need this to do some memory optimisation.

Regards,
G

Re: Virtual Memory Page size by Steve

Steve
Sat Oct 23 15:30:27 CDT 2004

GetSystemInfo() retrieves a SYSTEM_INFO structure the dwPageSize member
contains the page size for the system.

--
Steve Maillet
EmbeddedFusion
www.EmbeddedFusion.com
smaillet at EmbeddedFusion dot com



Re: Virtual Memory Page size by aWu

aWu
Sun Oct 24 21:10:28 CDT 2004

There exist a MACRO "PAGE_SIZE".

aWu

"g" <g@discussions.microsoft.com> дÈëÏûÏ¢ÐÂÎÅ:1A6F5233-77C1-4D03-ADD6-7A28CFF52F92@microsoft.com...
> Dear experts,
>
> Is there a way to find out the Virtual Memory page size on an ARM and x86
> platform? I will need this to do some memory optimisation.
>
> Regards,
> G



Re: Virtual Memory Page size by Miky

Miky
Mon Oct 25 06:05:12 CDT 2004

Virtual Memory size setting........ for optimisation!!!!!

#include <pwindbas.h>

// MEMORIA PAGE
#define MEMORY_PAGE 1024 // only 1024MB for StorageMemory

SetSystemMemoryDivision( MEMORY_PAGE );

Mike.....

"g" <g@discussions.microsoft.com> ha scritto nel messaggio
news:1A6F5233-77C1-4D03-ADD6-7A28CFF52F92@microsoft.com...
> Dear experts,
>
> Is there a way to find out the Virtual Memory page size on an ARM and x86
> platform? I will need this to do some memory optimisation.
>
> Regards,
> G