Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PT_NOTE (0.07 sec)

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

    	startva := *FlagTextAddr - int64(HEADR)
    	resoff := elfreserve
    
    	var pph *ElfPhdr
    	var pnote *ElfPhdr
    	getpnote := func() *ElfPhdr {
    		if pnote == nil {
    			pnote = newElfPhdr()
    			pnote.Type = elf.PT_NOTE
    			pnote.Flags = elf.PF_R
    		}
    		return pnote
    	}
    	if *flagRace && ctxt.IsNetbsd() {
    		sh := elfshname(".note.netbsd.pax")
    		resoff -= int64(elfnetbsdpax(sh, uint64(startva), uint64(resoff)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. src/debug/elf/file_test.go

    			{PT_LOAD, PF_R + PF_W, 0x688, 0x600688, 0x600688, 0x210, 0x218, 0x200000},
    			{PT_DYNAMIC, PF_R + PF_W, 0x6b0, 0x6006b0, 0x6006b0, 0x1a0, 0x1a0, 0x8},
    			{PT_NOTE, PF_R, 0x21c, 0x40021c, 0x40021c, 0x20, 0x20, 0x4},
    			{PT_LOOS + 0x474E550, PF_R, 0x5b8, 0x4005b8, 0x4005b8, 0x24, 0x24, 0x4},
    			{PT_LOOS + 0x474E551, PF_R + PF_W, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
Back to top