25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

27 lines
478 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 windows && !race
  5. // +build windows,!race
  6. package windows
  7. import (
  8. "unsafe"
  9. )
  10. const raceenabled = false
  11. func raceAcquire(addr unsafe.Pointer) {
  12. }
  13. func raceReleaseMerge(addr unsafe.Pointer) {
  14. }
  15. func raceReadRange(addr unsafe.Pointer, len int) {
  16. }
  17. func raceWriteRange(addr unsafe.Pointer, len int) {
  18. }