pleriche/FastMM5

Support for read-only memory?

Opened this issue · 2 comments

Is it possible to allocate memory with FastMM5 and make part of that memory read-only?

Hi Gerben,

Unfortunately PC hardware only supports memory protection at the page level, which is 4096 bytes. You could allocate a block via FastMM and then call VirtualProtect to change the page the block is in to read-only mode, but you'll run into trouble if the adjacent blocks are written to by your application.

Alternatively you could allocate a 4K page via VirtualAlloc yourself, and then you can control the protection flags on that page without risk to adjacent blocks.

Best regards,
Pierre