Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for stkobjinit (0.15 sec)

  1. src/runtime/stkframe.go

    			// gcinfo tests into heap gcinfo tests :(
    		}
    	}
    
    	return
    }
    
    var methodValueCallFrameObjs [1]stackObjectRecord // initialized in stackobjectinit
    
    func stkobjinit() {
    	var abiRegArgsEface any = abi.RegArgs{}
    	abiRegArgsType := efaceOf(&abiRegArgsEface)._type
    	if abiRegArgsType.Kind_&abi.KindGCProg != 0 {
    		throw("abiRegArgsType needs GC Prog, update methodValueCallFrameObjs")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    	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()
    	gcinit()
    
    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