Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PT_LOAD (0.17 sec)

  1. src/debug/elf/elf.go

    func (i CompressionType) GoString() string { return stringName(uint32(i), compressionStrings, true) }
    
    // Prog.Type
    type ProgType int
    
    const (
    	PT_NULL    ProgType = 0 /* Unused entry. */
    	PT_LOAD    ProgType = 1 /* Loadable segment. */
    	PT_DYNAMIC ProgType = 2 /* Dynamic linking information segment. */
    	PT_INTERP  ProgType = 3 /* Pathname of interpreter. */
    	PT_NOTE    ProgType = 4 /* Auxiliary information. */
    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/data.go

    		// file by arranging for the relro segment to end at a page
    		// boundary, and overlap the end of the text segment with the
    		// start of the relro segment in the file.  The PT_LOAD segments
    		// will be such that the last page of the text segment will be
    		// mapped twice, once r-x and once starting out rw- and, after
    		// relocation processing, changed to r--.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top