Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for STT_TLS (0.18 sec)

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

    			continue
    		}
    		st := ldr.SymType(s)
    		if st >= sym.SELFRXSECT && st < sym.SXREF {
    			typ := elf.STT_OBJECT
    			if st == sym.STLSBSS {
    				if ctxt.IsInternal() {
    					continue
    				}
    				typ = elf.STT_TLS
    			}
    			if !shouldBeInSymbolTable(s) {
    				continue
    			}
    			putelfsym(ctxt, s, typ, elfbind)
    			continue
    		}
    		if st == sym.SHOSTOBJ || st == sym.SDYNIMPORT || st == sym.SUNDEFEXT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	STT_FUNC    SymType = 2  /* Function. */
    	STT_SECTION SymType = 3  /* Section. */
    	STT_FILE    SymType = 4  /* Source file. */
    	STT_COMMON  SymType = 5  /* Uninitialized common block. */
    	STT_TLS     SymType = 6  /* TLS object. */
    	STT_LOOS    SymType = 10 /* Reserved range for operating system */
    	STT_HIOS    SymType = 12 /*   specific semantics. */
    	STT_LOPROC  SymType = 13 /* reserved range for processor */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"STT_HIOS", Const, 0},
    		{"STT_HIPROC", Const, 0},
    		{"STT_LOOS", Const, 0},
    		{"STT_LOPROC", Const, 0},
    		{"STT_NOTYPE", Const, 0},
    		{"STT_OBJECT", Const, 0},
    		{"STT_SECTION", Const, 0},
    		{"STT_TLS", Const, 0},
    		{"STV_DEFAULT", Const, 0},
    		{"STV_HIDDEN", Const, 0},
    		{"STV_INTERNAL", Const, 0},
    		{"STV_PROTECTED", Const, 0},
    		{"ST_BIND", Func, 0},
    		{"ST_INFO", Func, 0},
    		{"ST_TYPE", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg debug/elf, const STT_LOPROC SymType
    pkg debug/elf, const STT_NOTYPE SymType
    pkg debug/elf, const STT_OBJECT SymType
    pkg debug/elf, const STT_SECTION SymType
    pkg debug/elf, const STT_TLS SymType
    pkg debug/elf, const STV_DEFAULT SymVis
    pkg debug/elf, const STV_HIDDEN SymVis
    pkg debug/elf, const STV_INTERNAL SymVis
    pkg debug/elf, const STV_PROTECTED SymVis
    pkg debug/elf, const Sym32Size ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  5. api/go1.1.txt

    pkg debug/elf, const STT_LOOS = 10
    pkg debug/elf, const STT_LOPROC = 13
    pkg debug/elf, const STT_NOTYPE = 0
    pkg debug/elf, const STT_OBJECT = 1
    pkg debug/elf, const STT_SECTION = 3
    pkg debug/elf, const STT_TLS = 6
    pkg debug/elf, const STV_DEFAULT = 0
    pkg debug/elf, const STV_HIDDEN = 2
    pkg debug/elf, const STV_INTERNAL = 1
    pkg debug/elf, const STV_PROTECTED = 3
    pkg debug/elf, const Sym32Size = 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top