Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for inittasks (0.19 sec)

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

    				continue // don't mark referenced symbol - it is not needed in the final binary.
    			case objabi.R_INITORDER:
    				// inittasks has already run, so any R_INITORDER links are now
    				// superfluous - the only live inittask records are those which are
    				// in a scheduled list somewhere (e.g. runtime.moduledata.inittasks).
    				continue
    			}
    			rs := r.Sym()
    			if isgotype && usedInIface && d.ldr.IsGoType(rs) && !d.ldr.AttrUsedInIface(rs) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    			// these symbols are undefined and that's OK.
    			if target.IsShared() || target.IsPlugin() {
    				if ldr.SymName(rs) == "main.main" || (!target.IsPlugin() && ldr.SymName(rs) == "main..inittask") {
    					sb := ldr.MakeSymbolUpdater(rs)
    					sb.SetType(sym.SDYNIMPORT)
    				} else if strings.HasPrefix(ldr.SymName(rs), "go:info.") {
    					// Skip go.info symbols. They are only needed to communicate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top