Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for moduledataverify (0.57 sec)

  1. src/runtime/symtab.go

    type findfuncbucket struct {
    	idx        uint32
    	subbuckets [16]byte
    }
    
    func moduledataverify() {
    	for datap := &firstmoduledata; datap != nil; datap = datap.next {
    		moduledataverify1(datap)
    	}
    }
    
    const debugPcln = false
    
    // moduledataverify1 should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. src/runtime/plugin.go

    		}
    	}
    
    	// Initialize the freshly loaded module.
    	modulesinit()
    	typelinksinit()
    
    	pluginftabverify(md)
    	moduledataverify1(md)
    
    	lock(&itabLock)
    	for _, i := range md.itablinks {
    		itabAdd(i)
    	}
    	unlock(&itabLock)
    
    	// Build a map of symbol names to symbols. Here in the runtime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    		gp.racectx, raceprocctx0 = raceinit()
    	}
    
    	sched.maxmcount = 10000
    	crashFD.Store(^uintptr(0))
    
    	// The world starts stopped.
    	worldStopped()
    
    	ticks.init() // run as early as possible
    	moduledataverify()
    	stackinit()
    	mallocinit()
    	godebug := getGodebugEarly()
    	cpuinit(godebug) // must run before alginit
    	randinit()       // must run before alginit, mcommoninit
    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