Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for racefingo (0.08 sec)

  1. src/runtime/race0.go

    func racereleasemerge(addr unsafe.Pointer)                                  { throw("race") }
    func racereleasemergeg(gp *g, addr unsafe.Pointer)                          { throw("race") }
    func racefingo()                                                            { throw("race") }
    func racemalloc(p unsafe.Pointer, sz uintptr)                               { 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)
  2. src/runtime/mklockrank.go

    NONE < panic;
    # deadlock is not acquired while holding panic, but it also needs to be
    # below all other locks.
    panic < deadlock;
    # raceFini is only held while exiting.
    panic < raceFini;
    
    # RWMutex internal read lock
    
    allocmR,
      allocmW
    < allocmRInternal;
    
    execR,
      execW
    < execRInternal;
    
    testR,
      testW
    < testRInternal;
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top