pub const fn align_up(val: usize, alignment: usize) -> usizeExpand description
Returns the smallest value greater or equal to val that is a multiple of alignment. Returns
zero on overflow.
You may use this together with page_size to align your regions for committing/decommitting.
alignment must be a power of two (which implies that it must be non-zero).