Struct lldb::SBProcess [] [src]

pub struct SBProcess {
    pub raw: SBProcessRef,
}

The process associated with the target program.

You get a process by attaching to or launching a target program. See SBTarget for details.

Process State

The OS process ID (pid_t) for the process is available via process_id.

The process state can be obtained via state. It is common to just check to see if the process is_alive, is_running or is_stopped.

Once the process is in the Exited state, the exit_status and exit_description are available for inspection.

Execution Control

Once you have a process, you can:

Threads

The process contains the threads of execution for the target. The available threads can be iterated over with threads:

// Iterate over the threads...
for thread in process.threads() {
    println!("Hello {}!", thread.thread_id());
}
// Or collect them into a vector!
let threads = process.threads().collect::<Vec<SBThread>>();

Specific individual threads can be looked up via thread_by_id and thread_by_index_id methods.

Some functions operate on the 'currently selected thread'. This can retrieved via selected_thread and set via set_selected_thread, set_selected_thread_by_id, or set_selected_thread_by_index_id.

Queues

A process may also have a set of queues associated with it. This is used on macOS, iOS and other Apple operating systems to support debugger integration with libdispatch, also known as GCD or "Grand Central Dispatch".

The active queues can be iterated over with queues:

// Iterate over the queues...
for queue in process.queues() {
    println!("Hello {}!", queue.queue_id());
}

Events

... to be written ...

Fields

The underlying raw SBProcessRef.

Methods

impl SBProcess
[src]

[src]

Construct a new SBProcess.

[src]

Construct a new Some(SBProcess) or None.

[src]

Check whether or not this is a valid SBProcess value.

[src]

[src]

The current state of this process (running, stopped, exited, etc.).

[src]

Returns true if the process is currently alive.

This corresponds to the process being in the Attaching, Launching, Stopped, Running, Stepping, Crashed or Suspended states.

[src]

Returns true if the process is currently running.

This corresponds to the process being in the Running or Stepping states.

[src]

Returns true if the process is currently stopped.

This corresponds to the process being in the Stopped, Crashed, or Suspended states.

[src]

The exit status of the process when the process state is Exited.

[src]

The exit description of the process when the process state is Exited.

[src]

Returns the process ID of the process.

[src]

Returns an integer ID that is guaranteed to be unique across all process instances. This is not the process ID, just a unique integer for comparison and caching purposes.

[src]

Get the size, in bytes, of an address.

[src]

Kills the process and shuts down all threads that were spawned to track and monitor the process.

[src]

[src]

[src]

Same as calling destroy.

[src]

[src]

Send the process a Unix signal.

[src]

[src]

Get an iterator over the threads known to this process instance.

[src]

Get an iterator over the queues known to this process instance.

[src]

Returns the thread with the given thread ID.

[src]

Returns the thread with the given thread index ID.

[src]

Returns the currently selected thread.

[src]

Set the selected thread.

[src]

Set the selected thread by ID.

[src]

Set the selected thread by index ID.

[src]

[src]

Save the state of the process in a core file (or mini dump on Windows).

Trait Implementations

impl Debug for SBProcess
[src]

[src]

Formats the value using the given formatter.

impl Drop for SBProcess
[src]

[src]

Executes the destructor for this type. Read more