Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for relocSect (0.25 sec)

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

    	sizeExtRelocs(ctxt, thearch.MachorelocSize)
    	relocSect, wg := relocSectFn(ctxt, machorelocsect)
    
    	relocSect(ctxt, Segtext.Sections[0], ctxt.Textp)
    	for _, sect := range Segtext.Sections[1:] {
    		if sect.Name == ".text" {
    			relocSect(ctxt, sect, ctxt.Textp)
    		} else {
    			relocSect(ctxt, sect, ctxt.datap)
    		}
    	}
    	for _, sect := range Segrelrodata.Sections {
    		relocSect(ctxt, sect, ctxt.datap)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    	}
    
    	sizeExtRelocs(ctxt, thearch.ELF.RelocSize)
    	relocSect, wg := relocSectFn(ctxt, elfrelocsect)
    
    	for _, sect := range Segtext.Sections {
    		if sect.Name == ".text" {
    			relocSect(ctxt, sect, ctxt.Textp)
    		} else {
    			relocSect(ctxt, sect, ctxt.datap)
    		}
    	}
    
    	for _, sect := range Segrodata.Sections {
    		relocSect(ctxt, sect, ctxt.datap)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top