Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for PT_GNU_STACK (0.15 sec)

  1. src/debug/elf/elf.go

    	PT_TLS     ProgType = 7 /* Thread local storage segment */
    
    	PT_LOOS ProgType = 0x60000000 /* First OS-specific. */
    
    	PT_GNU_EH_FRAME ProgType = 0x6474e550 /* Frame unwind information */
    	PT_GNU_STACK    ProgType = 0x6474e551 /* Stack flags */
    	PT_GNU_RELRO    ProgType = 0x6474e552 /* Read only after relocs */
    	PT_GNU_PROPERTY ProgType = 0x6474e553 /* GNU property */
    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

    			ph.Memsz = tlssize
    			ph.Align = uint64(ctxt.Arch.RegSize)
    		}
    	}
    
    	if ctxt.HeadType == objabi.Hlinux || ctxt.HeadType == objabi.Hfreebsd {
    		ph := newElfPhdr()
    		ph.Type = elf.PT_GNU_STACK
    		ph.Flags = elf.PF_W + elf.PF_R
    		ph.Align = uint64(ctxt.Arch.RegSize)
    	} else if ctxt.HeadType == objabi.Hopenbsd {
    		ph := newElfPhdr()
    		ph.Type = elf.PT_OPENBSD_NOBTCFI
    		ph.Flags = elf.PF_X
    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. api/go1.16.txt

    pkg debug/elf, const PT_GNU_PROPERTY ProgType
    pkg debug/elf, const PT_GNU_RELRO = 1685382482
    pkg debug/elf, const PT_GNU_RELRO ProgType
    pkg debug/elf, const PT_GNU_STACK = 1685382481
    pkg debug/elf, const PT_GNU_STACK ProgType
    pkg debug/elf, const PT_MIPS_ABIFLAGS = 1879048195
    pkg debug/elf, const PT_MIPS_ABIFLAGS ProgType
    pkg debug/elf, const PT_MIPS_OPTIONS = 1879048194
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"PT_DYNAMIC", Const, 0},
    		{"PT_GNU_EH_FRAME", Const, 16},
    		{"PT_GNU_MBIND_HI", Const, 16},
    		{"PT_GNU_MBIND_LO", Const, 16},
    		{"PT_GNU_PROPERTY", Const, 16},
    		{"PT_GNU_RELRO", Const, 16},
    		{"PT_GNU_STACK", Const, 16},
    		{"PT_HIOS", Const, 0},
    		{"PT_HIPROC", Const, 0},
    		{"PT_INTERP", Const, 0},
    		{"PT_LOAD", Const, 0},
    		{"PT_LOOS", Const, 0},
    		{"PT_LOPROC", Const, 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