Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for runtime_inittasks (0.33 sec)

  1. src/cmd/link/internal/ld/inittask.go

    	// initialize the runtime_inittasks variable.
    	ldr := ctxt.loader
    	if ldr.Lookup("runtime.runtime_inittasks", 0) != 0 {
    		t := ctxt.inittaskSym([]string{"runtime..inittask"}, "go:runtime.inittasks")
    
    		// This slice header is already defined in runtime/proc.go, so we update it here with new contents.
    		sh := ldr.Lookup("runtime.runtime_inittasks", 0)
    		sb := ldr.MakeSymbolUpdater(sh)
    		sb.SetSize(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    	mcache0      *mcache
    	raceprocctx0 uintptr
    	raceFiniLock mutex
    )
    
    // This slice records the initializing tasks that need to be
    // done to start up the runtime. It is built by the linker.
    var runtime_inittasks []*initTask
    
    // main_init_done is a signal used by cgocallbackg that initialization
    // has been completed. It is made before _cgo_notify_runtime_init_done,
    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