Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for allocmRInternal (0.58 sec)

  1. src/runtime/lockrank.go

    	lockRankTrace:           "trace",
    	lockRankTraceStackTab:   "traceStackTab",
    	lockRankPanic:           "panic",
    	lockRankDeadlock:        "deadlock",
    	lockRankRaceFini:        "raceFini",
    	lockRankAllocmRInternal: "allocmRInternal",
    	lockRankExecRInternal:   "execRInternal",
    	lockRankTestRInternal:   "testRInternal",
    }
    
    func (rank lockRank) String() string {
    	if rank == 0 {
    		return "UNKNOWN"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. src/runtime/mklockrank.go

    # 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;
    `
    
    // cyclicRanks lists lock ranks that allow multiple locks of the same
    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