Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for modulesinit (0.19 sec)

  1. src/runtime/plugin.go

    			md.bad = true
    			return "", nil, nil, "plugin was built with a different version of package " + pkghash.modulename
    		}
    	}
    
    	// Initialize the freshly loaded module.
    	modulesinit()
    	typelinksinit()
    
    	pluginftabverify(md)
    	moduledataverify1(md)
    
    	lock(&itabLock)
    	for _, i := range md.itablinks {
    		itabAdd(i)
    	}
    	unlock(&itabLock)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. src/runtime/symtab.go

    //
    // After loading, this function is called which initializes the
    // moduledata so it is usable by the GC and creates a new activeModules
    // list.
    //
    // Only one goroutine may call modulesinit at a time.
    func modulesinit() {
    	modules := new([]*moduledata)
    	for md := &firstmoduledata; md != nil; md = md.next {
    		if md.bad {
    			continue
    		}
    		*modules = append(*modules, md)
    		if md.gcdatamask == (bitvector{}) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    	cpuinit(godebug) // must run before alginit
    	randinit()       // must run before alginit, mcommoninit
    	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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^NS_GET_/ ||
    		$2 ~ /^TUN(SET|GET|ATTACH|DETACH)/ ||
    		$2 ~ /^(O|F|[ES]?FD|NAME|S|PTRACE|PT|PIOD|TFD)_/ ||
    		$2 ~ /^KEXEC_/ ||
    		$2 ~ /^LINUX_REBOOT_CMD_/ ||
    		$2 ~ /^LINUX_REBOOT_MAGIC[12]$/ ||
    		$2 ~ /^MODULE_INIT_/ ||
    		$2 !~ "NLA_TYPE_MASK" &&
    		$2 !~ /^RTC_VL_(ACCURACY|BACKUP|DATA)/ &&
    		$2 ~ /^(NETLINK|NLM|NLMSG|NLA|IFA|IFAN|RT|RTC|RTCF|RTN|RTPROT|RTNH|ARPHRD|ETH_P|NETNSA)_/ ||
    		$2 ~ /^SOCK_|SK_DIAG_|SKNLGRP_$/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top