Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for itabsinit (0.24 sec)

  1. src/runtime/iface.go

    	// for all interface/type pairs used in switches (which are added to itabTable
    	// in itabsinit). The dynamically-generated itab's never participate in type switches,
    	// and thus the hash is irrelevant.
    	// Note: m.Hash is _not_ the hash used for the runtime itabTable hash table.
    	m.Hash = 0
    	itabInit(m, true)
    	itabAdd(m)
    	unlock(&itabLock)
    finish:
    	if m.Fun[0] != 0 {
    		return m
    	}
    	if canfail {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    	alginit()        // maps, hash, rand must not be used before this call
    	mcommoninit(gp.m, -1)
    	modulesinit()   // provides activeModules
    	typelinksinit() // uses maps, activeModules
    	itabsinit()     // uses activeModules
    	stkobjinit()    // must run before GC starts
    
    	sigsave(&gp.m.sigmask)
    	initSigmask = gp.m.sigmask
    
    	goargs()
    	goenvs()
    	secure()
    	checkfds()
    	parsedebugvars()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top