Function checkMemIsAddressable [src]

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

Prototype

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

Parameters

qzz: []const u8

Source

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