Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for STV_HIDDEN (0.17 sec)

  1. src/cmd/link/internal/loader/loader.go

    	if v {
    		l.attrNotInSymbolTable.Set(i)
    	} else {
    		l.attrNotInSymbolTable.Unset(i)
    	}
    }
    
    // AttrVisibilityHidden symbols returns true for ELF symbols with
    // visibility set to STV_HIDDEN. They become local symbols in
    // the final executable. Only relevant when internally linking
    // on an ELF platform.
    func (l *Loader) AttrVisibilityHidden(i Sym) bool {
    	if !l.IsExternal(i) {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top