[][src]Crate page_size

This crate provides an easy, fast, cross-platform way to retrieve the memory page size of the current system.

Modern hardware and software tend to load data into RAM (and transfer data from RAM to disk) in discrete chunk called pages. This crate provides a helper method to retrieve the size in bytes of these pages. Since the page size should not change during execution, this crate will cache the result after it has been called once.

To make this crate useful for writing memory allocators, it does not require (but can use) the Rust standard library.

Since Windows addresses sometimes have to correspond with an allocation granularity that does not always match the size of the page, I have included a method to retrieve that as well.

Example

extern crate page_size;
println!("{}", page_size::get());

Functions

get

This function retrieves the system's memory page size.

get_granularity

This function retrieves the system's memory allocation granularity.