Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for notifyList (0.12 sec)

  1. src/runtime/sema.go

    	}
    	unlock(&l.lock)
    }
    
    //go:linkname notifyListCheck sync.runtime_notifyListCheck
    func notifyListCheck(sz uintptr) {
    	if sz != unsafe.Sizeof(notifyList{}) {
    		print("runtime: bad notifyList size - sync=", sz, " runtime=", unsafe.Sizeof(notifyList{}), "\n")
    		throw("bad notifyList size")
    	}
    }
    
    //go:linkname sync_nanotime sync.runtime_nanotime
    func sync_nanotime() int64 {
    	return nanotime()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/runtime/lockrank.go

    	lockRankAllocmR:         "allocmR",
    	lockRankExecR:           "execR",
    	lockRankSched:           "sched",
    	lockRankAllg:            "allg",
    	lockRankAllp:            "allp",
    	lockRankNotifyList:      "notifyList",
    	lockRankSudog:           "sudog",
    	lockRankTimers:          "timers",
    	lockRankTimer:           "timer",
    	lockRankNetpollInit:     "netpollInit",
    	lockRankRoot:            "root",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top