#include <oskit/memdebug.h>void * memdebug_untraced_alloc(oskit_u32_t size, oskit_u32_t align_bits, oskit_u32_t align_ofs);
Obtains memory of the given size and alignment constraints from the client OS. Used by the memdebug library to get the ``raw'' memory that it tracks.
- size
- The size (in bytes) of the chunk to allocate.
- align_bits
- The number of low bits of the returned memory chunk address that must match the corresponding bits in align_ofs.
- align_ofs
- The required offset from natural power-of-two alignment. If align_ofs is zero, then the returned memory block will be naturally aligned on a
boundary.