Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for RaceAcquire (0.2 sec)

  1. src/cmd/vendor/golang.org/x/sys/plan9/race.go

    // license that can be found in the LICENSE file.
    
    //go:build plan9 && race
    
    package plan9
    
    import (
    	"runtime"
    	"unsafe"
    )
    
    const raceenabled = true
    
    func raceAcquire(addr unsafe.Pointer) {
    	runtime.RaceAcquire(addr)
    }
    
    func raceReleaseMerge(addr unsafe.Pointer) {
    	runtime.RaceReleaseMerge(addr)
    }
    
    func raceReadRange(addr unsafe.Pointer, len int) {
    	runtime.RaceReadRange(addr, len)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 587 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/race.go

    // license that can be found in the LICENSE file.
    
    //go:build windows && race
    
    package windows
    
    import (
    	"runtime"
    	"unsafe"
    )
    
    const raceenabled = true
    
    func raceAcquire(addr unsafe.Pointer) {
    	runtime.RaceAcquire(addr)
    }
    
    func raceReleaseMerge(addr unsafe.Pointer) {
    	runtime.RaceReleaseMerge(addr)
    }
    
    func raceReadRange(addr unsafe.Pointer, len int) {
    	runtime.RaceReadRange(addr, len)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 591 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/race.go

    //go:build (darwin && race) || (linux && race) || (freebsd && race)
    
    package unix
    
    import (
    	"runtime"
    	"unsafe"
    )
    
    const raceenabled = true
    
    func raceAcquire(addr unsafe.Pointer) {
    	runtime.RaceAcquire(addr)
    }
    
    func raceReleaseMerge(addr unsafe.Pointer) {
    	runtime.RaceReleaseMerge(addr)
    }
    
    func raceReadRange(addr unsafe.Pointer, len int) {
    	runtime.RaceReadRange(addr, len)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 629 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/race0.go

    // license that can be found in the LICENSE file.
    
    //go:build windows && !race
    
    package windows
    
    import (
    	"unsafe"
    )
    
    const raceenabled = false
    
    func raceAcquire(addr unsafe.Pointer) {
    }
    
    func raceReleaseMerge(addr unsafe.Pointer) {
    }
    
    func raceReadRange(addr unsafe.Pointer, len int) {
    }
    
    func raceWriteRange(addr unsafe.Pointer, len int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 454 bytes
    - Viewed (0)
  5. src/runtime/race.go

    // In terms of the C memory model (C11 §5.1.2.4, §7.17.3),
    // RaceAcquire is equivalent to atomic_load(memory_order_acquire).
    //
    //go:nosplit
    func RaceAcquire(addr unsafe.Pointer) {
    	raceacquire(addr)
    }
    
    // RaceRelease performs a release operation on addr that
    // can synchronize with a later RaceAcquire on addr.
    //
    // In terms of the C memory model, RaceRelease is equivalent to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. src/internal/race/race.go

    // license that can be found in the LICENSE file.
    
    //go:build race
    
    package race
    
    import (
    	"runtime"
    	"unsafe"
    )
    
    const Enabled = true
    
    func Acquire(addr unsafe.Pointer) {
    	runtime.RaceAcquire(addr)
    }
    
    func Release(addr unsafe.Pointer) {
    	runtime.RaceRelease(addr)
    }
    
    func ReleaseMerge(addr unsafe.Pointer) {
    	runtime.RaceReleaseMerge(addr)
    }
    
    func Disable() {
    	runtime.RaceDisable()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 881 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/plan9/race0.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build plan9 && !race
    
    package plan9
    
    import (
    	"unsafe"
    )
    
    const raceenabled = false
    
    func raceAcquire(addr unsafe.Pointer) {
    }
    
    func raceReleaseMerge(addr unsafe.Pointer) {
    }
    
    func raceReadRange(addr unsafe.Pointer, len int) {
    }
    
    func raceWriteRange(addr unsafe.Pointer, len int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 450 bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/race0.go

    //go:build aix || (darwin && !race) || (linux && !race) || (freebsd && !race) || netbsd || openbsd || solaris || dragonfly || zos
    
    package unix
    
    import (
    	"unsafe"
    )
    
    const raceenabled = false
    
    func raceAcquire(addr unsafe.Pointer) {
    }
    
    func raceReleaseMerge(addr unsafe.Pointer) {
    }
    
    func raceReadRange(addr unsafe.Pointer, len int) {
    }
    
    func raceWriteRange(addr unsafe.Pointer, len int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 553 bytes
    - Viewed (0)
  9. src/runtime/race0.go

    func racereadrangepc(addr unsafe.Pointer, sz, callerpc, pc uintptr)         { throw("race") }
    func racewriterangepc(addr unsafe.Pointer, sz, callerpc, pc uintptr)        { throw("race") }
    func raceacquire(addr unsafe.Pointer)                                       { throw("race") }
    func raceacquireg(gp *g, addr unsafe.Pointer)                               { throw("race") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  10. src/runtime/cgocall.go

    	// used again if callback decide to make syscall.
    	winsyscall := mp.winsyscall
    
    	exitsyscall()
    
    	getg().m.winsyscall = winsyscall
    
    	// Note that raceacquire must be called only after exitsyscall has
    	// wired this M to a P.
    	if raceenabled {
    		raceacquire(unsafe.Pointer(&racecgosync))
    	}
    
    	// From the garbage collector's perspective, time can move
    	// backwards in the sequence above. If there's a callback into
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top