You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

32 lines
675 B

  1. // Copyright 2012 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 (darwin && race) || (linux && race) || (freebsd && race)
  5. // +build darwin,race linux,race freebsd,race
  6. package unix
  7. import (
  8. "runtime"
  9. "unsafe"
  10. )
  11. const raceenabled = true
  12. func raceAcquire(addr unsafe.Pointer) {
  13. runtime.RaceAcquire(addr)
  14. }
  15. func raceReleaseMerge(addr unsafe.Pointer) {
  16. runtime.RaceReleaseMerge(addr)
  17. }
  18. func raceReadRange(addr unsafe.Pointer, len int) {
  19. runtime.RaceReadRange(addr, len)
  20. }
  21. func raceWriteRange(addr unsafe.Pointer, len int) {
  22. runtime.RaceWriteRange(addr, len)
  23. }