up vote 2 down vote favorite
share [g+] share [fb]

Is there a portable way to detect (programmatically) the memory page size using C or C++ code ?

link|improve this question

8  
No, there isn't. – anon Jul 28 '10 at 10:27
2  
No there isn't because C and C++ exist also for platforms without virtual memory. – zvrba Jul 28 '10 at 11:20
feedback

4 Answers

up vote 6 down vote accepted

Since Boost is a pretty portable library you could use mapped_region::get_page_size() function to retrieve the memory page size.

As for C++ Standard it gives no such a possibility.

link|improve this answer
feedback

C doesn't know anything about memory pages. On posix systems you can use long pagesize = sysconf(_SC_PAGE_SIZE);

link|improve this answer
feedback

It is entirely platform dependent which address-ranges are mapped to which page-sizes. Further the pagesize is not system-wide. You can allocate memory from different page-size regions according to the use case. And you can even have platforms without any virtual memory managment.

So, code handling this topic must be platform specific.

link|improve this answer
feedback

I think this function helps.
[DllImport("kernel32.dll")] public static extern void GetSystemInfo([MarshalAs(UnmanagedType.Struct)] ref SYSTEM_INFO lpSystemInfo);

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.