Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MachoAddRebase (0.18 sec)

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

    // entries as we go and build the table at the end.
    type machoRebaseRecord struct {
    	sym loader.Sym
    	off int64
    }
    
    var machorebase []machoRebaseRecord
    
    func MachoAddRebase(s loader.Sym, off int64) {
    	machorebase = append(machorebase, machoRebaseRecord{s, off})
    }
    
    // A bind entry tells the dynamic linker the data at GOT+off should be bound
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
Back to top