Class: MachO::RoutinesCommand64

Inherits:
LoadCommand show all
Defined in:
lib/macho/load_commands.rb

Overview

A load command containing the address of the dynamic shared library initialization routine and an index into the module table for the module that defines the routine. Corresponds to LC_ROUTINES_64.

Instance Attribute Summary collapse

Attributes inherited from LoadCommand

#cmd, #cmdsize, #offset

Instance Method Summary collapse

Methods inherited from LoadCommand

new_from_bin, #to_s

Methods inherited from MachOStructure

bytesize, new_from_bin

Constructor Details

#initialize(offset, cmd, cmdsize, init_address, init_module, reserved1, reserved2, reserved3, reserved4, reserved5, reserved6) ⇒ RoutinesCommand64

Returns a new instance of RoutinesCommand64.



618
619
620
621
622
623
624
625
626
627
628
629
630
# File 'lib/macho/load_commands.rb', line 618

def initialize(offset, cmd, cmdsize, init_address, init_module,
    reserved1, reserved2, reserved3, reserved4, reserved5,
    reserved6)
  super(offset, cmd, cmdsize)
  @init_address = init_address
  @init_module = init_module
  @reserved1 = reserved1
  @reserved2 = reserved2
  @reserved3 = reserved3
  @reserved4 = reserved4
  @reserved5 = reserved5
  @reserved6 = reserved6
end

Instance Attribute Details

#init_addressFixnum (readonly)

Returns the address of the initialization routine.

Returns:

  • (Fixnum)

    the address of the initialization routine



591
592
593
# File 'lib/macho/load_commands.rb', line 591

def init_address
  @init_address
end

#init_moduleFixnum (readonly)

Returns the index into the module table that the init routine is defined in.

Returns:

  • (Fixnum)

    the index into the module table that the init routine is defined in



594
595
596
# File 'lib/macho/load_commands.rb', line 594

def init_module
  @init_module
end

#reserved1void (readonly)

This method returns an undefined value.



597
598
599
# File 'lib/macho/load_commands.rb', line 597

def reserved1
  @reserved1
end

#reserved2void (readonly)

This method returns an undefined value.



600
601
602
# File 'lib/macho/load_commands.rb', line 600

def reserved2
  @reserved2
end

#reserved3void (readonly)

This method returns an undefined value.



603
604
605
# File 'lib/macho/load_commands.rb', line 603

def reserved3
  @reserved3
end

#reserved4void (readonly)

This method returns an undefined value.



606
607
608
# File 'lib/macho/load_commands.rb', line 606

def reserved4
  @reserved4
end

#reserved5void (readonly)

This method returns an undefined value.



609
610
611
# File 'lib/macho/load_commands.rb', line 609

def reserved5
  @reserved5
end

#reserved6void (readonly)

This method returns an undefined value.



612
613
614
# File 'lib/macho/load_commands.rb', line 612

def reserved6
  @reserved6
end