Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LoadCmd (0.06 sec)

  1. src/debug/macho/macho.go

    // A LoadCmd is a Mach-O load command.
    type LoadCmd uint32
    
    const (
    	LoadCmdSegment    LoadCmd = 0x1
    	LoadCmdSymtab     LoadCmd = 0x2
    	LoadCmdThread     LoadCmd = 0x4
    	LoadCmdUnixThread LoadCmd = 0x5 // thread+stack
    	LoadCmdDysymtab   LoadCmd = 0xb
    	LoadCmdDylib      LoadCmd = 0xc // load dylib command
    	LoadCmdDylinker   LoadCmd = 0xf // id dylinker command (not load dylinker command)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 00:56:52 UTC 2021
    - 7.6K bytes
    - Viewed (0)
Back to top