package msan

Import Path
	internal/msan (on go.dev)

Dependency Relation
	imports one package, and imported by one package

Involved Source Files Package msan contains helper functions for manually instrumenting code for the memory sanitizer. This package exports the private msan routines in runtime unconditionally but without the "msan" build tag they are no-ops. nomsan.go
Package-Level Functions (total 5)
func Free(addr unsafe.Pointer, sz uintptr)
func Malloc(addr unsafe.Pointer, sz uintptr)
func Move(dst, src unsafe.Pointer, sz uintptr)
func Read(addr unsafe.Pointer, sz uintptr)
func Write(addr unsafe.Pointer, sz uintptr)
Package-Level Constants (only one)
const Enabled = false