Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for PF_MASKOS (0.39 sec)

  1. src/debug/elf/elf.go

    // Prog.Flag
    type ProgFlag uint32
    
    const (
    	PF_X        ProgFlag = 0x1        /* Executable. */
    	PF_W        ProgFlag = 0x2        /* Writable. */
    	PF_R        ProgFlag = 0x4        /* Readable. */
    	PF_MASKOS   ProgFlag = 0x0ff00000 /* Operating system-specific. */
    	PF_MASKPROC ProgFlag = 0xf0000000 /* Processor-specific. */
    )
    
    var pfStrings = []intName{
    	{0x1, "PF_X"},
    	{0x2, "PF_W"},
    	{0x4, "PF_R"},
    }
    
    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/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"NT_FPREGSET", Const, 0},
    		{"NT_PRPSINFO", Const, 0},
    		{"NT_PRSTATUS", Const, 0},
    		{"NType", Type, 0},
    		{"NewFile", Func, 0},
    		{"OSABI", Type, 0},
    		{"Open", Func, 0},
    		{"PF_MASKOS", Const, 0},
    		{"PF_MASKPROC", Const, 0},
    		{"PF_R", Const, 0},
    		{"PF_W", Const, 0},
    		{"PF_X", Const, 0},
    		{"PT_AARCH64_ARCHEXT", Const, 16},
    		{"PT_AARCH64_UNWIND", Const, 16},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg debug/elf, const EV_CURRENT Version
    pkg debug/elf, const EV_NONE Version
    pkg debug/elf, const NT_FPREGSET NType
    pkg debug/elf, const NT_PRPSINFO NType
    pkg debug/elf, const NT_PRSTATUS NType
    pkg debug/elf, const PF_MASKOS ProgFlag
    pkg debug/elf, const PF_MASKPROC ProgFlag
    pkg debug/elf, const PF_R ProgFlag
    pkg debug/elf, const PF_W ProgFlag
    pkg debug/elf, const PF_X ProgFlag
    pkg debug/elf, const PT_DYNAMIC ProgType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg debug/elf, const EV_CURRENT = 1
    pkg debug/elf, const EV_NONE = 0
    pkg debug/elf, const NT_FPREGSET = 2
    pkg debug/elf, const NT_PRPSINFO = 3
    pkg debug/elf, const NT_PRSTATUS = 1
    pkg debug/elf, const PF_MASKOS = 267386880
    pkg debug/elf, const PF_MASKPROC = 4026531840
    pkg debug/elf, const PF_R = 4
    pkg debug/elf, const PF_W = 2
    pkg debug/elf, const PF_X = 1
    pkg debug/elf, const PT_DYNAMIC = 2
    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