$Revision$ $Date$ Functions
<function>mt_mem_alloc(size)</function> Allocates size bytes. This is a debugging function for simulating memory leaks or stressing the memory allocator. It should not be used in production setups <function>men_alloc</function> usage ... mem_alloc(1048576); # 1MB ...
<function>mt_mem_free()</function> Frees all the memory allocated with mem_alloc() up to this point. This is a debugging function for simulating memory leaks or stressing the memory allocator. It should not be used in production setups <function>mem_free</function> usage ... mem_free(); ...