Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for GoID (0.03 sec)

  1. src/runtime/export_test.go

    	return
    }
    
    func GetNextArenaHint() uintptr {
    	return mheap_.arenaHints.addr
    }
    
    type G = g
    
    type Sudog = sudog
    
    func Getg() *G {
    	return getg()
    }
    
    func Goid() uint64 {
    	return getg().goid
    }
    
    func GIsWaitingOnMutex(gp *G) bool {
    	return readgstatus(gp) == _Gwaiting && gp.waitreason.isMutexWait()
    }
    
    var CasGStatusAlwaysTrack = &casgstatusAlwaysTrack
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  2. src/runtime/arena.go

    	// Again, because this chunk counts toward heapLive, potentially trigger a GC.
    	if t := (gcTrigger{kind: gcTriggerHeap}); t.test() {
    		gcStart(t)
    	}
    
    	if debug.malloc {
    		if inittrace.active && inittrace.id == getg().goid {
    			// Init functions are executed sequentially in a single goroutine.
    			inittrace.bytes += uint64(userArenaChunkBytes)
    		}
    	}
    
    	// Double-check it's aligned to the physical page size. Based on the current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
Back to top