Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for compressSyms (0.15 sec)

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

    		return
    	}
    
    	var compressedCount int
    	resChannel := make(chan compressedSect)
    	for i := range dwarfp {
    		go func(resIndex int, syms []loader.Sym) {
    			resChannel <- compressedSect{resIndex, compressSyms(ctxt, syms), syms}
    		}(compressedCount, dwarfp[i].syms)
    		compressedCount++
    	}
    	res := make([]compressedSect, compressedCount)
    	for ; compressedCount > 0; compressedCount-- {
    		r := <-resChannel
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top