Function checkMemIsDefined [src]

Check that memory at qzz.ptr is addressable and defined for qzz.len bytes. If suitable addressability and definedness are not established, Valgrind prints an error message and returns the address of the first offending byte. Otherwise it returns zero.

Prototype

pub fn checkMemIsDefined(qzz: []const u8) usize

Parameters

qzz: []const u8

Source

pub fn checkMemIsDefined(qzz: []const u8) usize { return doClientRequestExpr(0, .CheckMemIsDefined, @intFromPtr(qzz.ptr), qzz.len, 0, 0, 0); }