pageSize

The size of a system page in bytes.

This value is set at startup time of the application. It's safe to use early in the start process, like in shared module constructors and initialization of the D runtime itself.

immutable
size_t pageSize;

Examples

ubyte[] buffer = new ubyte[pageSize];
Suggestion Box / Bug Report