Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PT_PHDR (1.03 sec)

  1. src/debug/elf/elf.go

    	PT_INTERP  ProgType = 3 /* Pathname of interpreter. */
    	PT_NOTE    ProgType = 4 /* Auxiliary information. */
    	PT_SHLIB   ProgType = 5 /* Reserved (not used). */
    	PT_PHDR    ProgType = 6 /* Location of program header itself. */
    	PT_TLS     ProgType = 7 /* Thread local storage segment */
    
    	PT_LOOS ProgType = 0x60000000 /* First OS-specific. */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    			sh.Type = uint32(elf.SHT_NOTE)
    			sh.Flags = uint64(elf.SHF_ALLOC)
    		}
    
    		goto elfobj
    	}
    
    	/* program header info */
    	pph = newElfPhdr()
    
    	pph.Type = elf.PT_PHDR
    	pph.Flags = elf.PF_R
    	pph.Off = uint64(eh.Ehsize)
    	pph.Vaddr = uint64(*FlagTextAddr) - uint64(HEADR) + pph.Off
    	pph.Paddr = uint64(*FlagTextAddr) - uint64(HEADR) + pph.Off
    	pph.Align = uint64(*FlagRound)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"PT_NOTE", Const, 0},
    		{"PT_NULL", Const, 0},
    		{"PT_OPENBSD_BOOTDATA", Const, 16},
    		{"PT_OPENBSD_RANDOMIZE", Const, 16},
    		{"PT_OPENBSD_WXNEEDED", Const, 16},
    		{"PT_PAX_FLAGS", Const, 16},
    		{"PT_PHDR", Const, 0},
    		{"PT_S390_PGSTE", Const, 16},
    		{"PT_SHLIB", Const, 0},
    		{"PT_SUNWSTACK", Const, 16},
    		{"PT_SUNW_EH_FRAME", Const, 16},
    		{"PT_TLS", Const, 0},
    		{"Prog", Type, 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)
Back to top