Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    // entries as we go and build the table at the end.
    type machoBindRecord struct {
    	off  int64
    	targ loader.Sym
    }
    
    var machobind []machoBindRecord
    
    func MachoAddBind(off int64, targ loader.Sym) {
    	machobind = append(machobind, machoBindRecord{off, targ})
    }
    
    // Generate data for the dynamic linker, used in LC_DYLD_INFO_ONLY load command.
    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