msan0.go 342 B

12345678910111213141516171819
  1. // Copyright 2015 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. //go:build !msan
  5. package syscall
  6. import (
  7. "unsafe"
  8. )
  9. const msanenabled = false
  10. func msanRead(addr unsafe.Pointer, len int) {
  11. }
  12. func msanWrite(addr unsafe.Pointer, len int) {
  13. }