Function mempoolAlloc [src]
Associate a piece of memory with a memory pool.
Prototype
pub fn mempoolAlloc(pool: [*]u8, mem: []u8) void Parameters
pool: [*]u8mem: []u8 Source
pub fn mempoolAlloc(pool: [*]u8, mem: []u8) void {
doClientRequestStmt(.MempoolAlloc, @intFromPtr(pool), @intFromPtr(mem.ptr), mem.len, 0, 0);
}