Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for byPkg (0.21 sec)

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

    				char = BSSSym
    			}
    			putplan9sym(ctxt, ldr, s, char)
    		}
    	}
    }
    
    type byPkg []*sym.Library
    
    func (libs byPkg) Len() int {
    	return len(libs)
    }
    
    func (libs byPkg) Less(a, b int) bool {
    	return libs[a].Pkg < libs[b].Pkg
    }
    
    func (libs byPkg) Swap(a, b int) {
    	libs[a], libs[b] = libs[b], libs[a]
    }
    
    // Create a table with information on the text sections.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
Back to top