Function stackRegister [src]

Mark a piece of memory as being a stack. Returns a stack id. start is the lowest addressable stack byte, end is the highest addressable stack byte.

Prototype

pub fn stackRegister(stack: []u8) usize

Parameters

stack: []u8

Source

pub fn stackRegister(stack: []u8) usize { return doClientRequestExpr(0, .StackRegister, @intFromPtr(stack.ptr), @intFromPtr(stack.ptr) + stack.len, 0, 0, 0); }