Class: MachO::RoutinesCommand

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.

Constant Summary collapse

FORMAT =
"VVVVVVVVVV"
SIZEOF =
40

Instance Attribute Summary collapse

Attributes inherited from LoadCommand

#cmd, #cmdsize, #offset

Instance Method Summary collapse

Methods inherited from LoadCommand

new_from_bin, #to_s, #type

Methods inherited from MachOStructure

bytesize, new_from_bin

Constructor Details

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

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of RoutinesCommand.



463
464
465
466
467
468
469
470
471
472
473
474
475
# File 'lib/macho/load_commands.rb', line 463

def initialize(raw_data, offset, cmd, cmdsize, init_address, init_module,
    reserved1, reserved2, reserved3, reserved4, reserved5,
    reserved6)
  super(raw_data, 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



436
437
438
# File 'lib/macho/load_commands.rb', line 436

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



439
440
441
# File 'lib/macho/load_commands.rb', line 439

def init_module
  @init_module
end

#reserved1void (readonly)

This method returns an undefined value.



442
443
444
# File 'lib/macho/load_commands.rb', line 442

def reserved1
  @reserved1
end

#reserved2void (readonly)

This method returns an undefined value.



445
446
447
# File 'lib/macho/load_commands.rb', line 445

def reserved2
  @reserved2
end

#reserved3void (readonly)

This method returns an undefined value.



448
449
450
# File 'lib/macho/load_commands.rb', line 448

def reserved3
  @reserved3
end

#reserved4void (readonly)

This method returns an undefined value.



451
452
453
# File 'lib/macho/load_commands.rb', line 451

def reserved4
  @reserved4
end

#reserved5void (readonly)

This method returns an undefined value.



454
455
456
# File 'lib/macho/load_commands.rb', line 454

def reserved5
  @reserved5
end

#reserved6void (readonly)

This method returns an undefined value.



457
458
459
# File 'lib/macho/load_commands.rb', line 457

def reserved6
  @reserved6
end