Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for PT_SUNWSTACK (0.2 sec)

  1. src/debug/elf/elf.go

    	PT_OPENBSD_NOBTCFI   ProgType = 0x65a3dbe8 /* No branch target CFI */
    	PT_OPENBSD_BOOTDATA  ProgType = 0x65a41be6 /* Boot arguments */
    
    	PT_SUNW_EH_FRAME ProgType = 0x6474e550 /* Frame unwind information */
    	PT_SUNWSTACK     ProgType = 0x6ffffffb /* Stack segment */
    
    	PT_HIOS ProgType = 0x6fffffff /* Last OS-specific. */
    
    	PT_LOPROC ProgType = 0x70000000 /* First processor-specific type. */
    
    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

    	} else if ctxt.HeadType == objabi.Hopenbsd {
    		ph := newElfPhdr()
    		ph.Type = elf.PT_OPENBSD_NOBTCFI
    		ph.Flags = elf.PF_X
    	} else if ctxt.HeadType == objabi.Hsolaris {
    		ph := newElfPhdr()
    		ph.Type = elf.PT_SUNWSTACK
    		ph.Flags = elf.PF_W + elf.PF_R
    	}
    
    elfobj:
    	sh := elfshname(".shstrtab")
    	eh.Shstrndx = uint16(sh.shnum)
    
    	if ctxt.IsMIPS() {
    		sh = elfshname(".MIPS.abiflags")
    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_PAX_FLAGS ProgType
    pkg debug/elf, const PT_S390_PGSTE = 1879048192
    pkg debug/elf, const PT_S390_PGSTE ProgType
    pkg debug/elf, const PT_SUNWSTACK = 1879048187
    pkg debug/elf, const PT_SUNWSTACK ProgType
    pkg debug/elf, const PT_SUNW_EH_FRAME = 1685382480
    pkg debug/elf, const PT_SUNW_EH_FRAME ProgType
    pkg embed, method (FS) Open(string) (fs.File, error)
    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_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},
    		{"Prog.ProgHeader", Field, 0},
    		{"Prog.ReaderAt", Field, 0},
    		{"Prog32", 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