Struct lldb::SBLaunchInfo [] [src]

pub struct SBLaunchInfo {
    pub raw: SBLaunchInfoRef,
}

Configuration for launching a process.

See SBTarget::launch.

Fields

The underlying raw SBLaunchInfoRef.

Methods

impl SBLaunchInfo
[src]

[src]

Construct a new SBLaunchInfo.

[src]

Construct a new SBLaunchInfo.

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

Set the executable file that will be used to launch the process and optionally set it as the first argument in the argument vector.

This only needs to be specified if clients wish to carefully control the exact path will be used to launch a binary. If you create a target with a symlink, that symlink will get resolved in the target and the resolved path will get used to launch the process. Calling this function can help you still launch your process using the path of your choice.

If this function is not called prior to launching with SBTarget::launch(...), the target will use the resolved executable path that was used to create the target.

exe_file is the override path to use when launching the executable.

If add_as_first_arg is true, then the path will be inserted into the argument vector prior to launching. Otherwise the argument vector will be left alone.

[src]

Get the listener that will be used to receive process events.

If no listener has been set via a call to SBLaunchInfo::set_listener(), then None will be returned. If a listener has been set, then the listener object will be returned.

[src]

Set the listener that will be used to receive process events.

By default the SBDebugger, which has a listener, that the SBTarget belongs to will listen for the process events. Calling this function allows a different listener to be used to listen for process events.

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl Debug for SBLaunchInfo
[src]

[src]

Formats the value using the given formatter.

impl Default for SBLaunchInfo
[src]

[src]

Returns the "default value" for a type. Read more

impl Drop for SBLaunchInfo
[src]

[src]

Executes the destructor for this type. Read more