LLDB mainline
|
Represents the context of a watchpoint variable. More...
#include <Watchpoint.h>
Public Member Functions | |
WatchpointVariableContext (lldb::watch_id_t watch_id, ExecutionContext exe_ctx) | |
Constructor for WatchpointVariableContext. | |
Public Attributes | |
lldb::watch_id_t | watch_id |
The ID of the watchpoint. | |
ExecutionContext | exe_ctx |
The execution context associated with the watchpoint. | |
Represents the context of a watchpoint variable.
This struct encapsulates the information related to a watchpoint variable, including the watch ID and the execution context in which it is being used. This struct is passed as a Baton to the VariableWatchpointDisabler breakpoint callback.
Definition at line 100 of file Watchpoint.h.
|
inline |
Constructor for WatchpointVariableContext.
watch_id | The ID of the watchpoint. |
exe_ctx | The execution context associated with the watchpoint. |
Definition at line 104 of file Watchpoint.h.
ExecutionContext lldb_private::Watchpoint::WatchpointVariableContext::exe_ctx |
The execution context associated with the watchpoint.
Definition at line 110 of file Watchpoint.h.
Referenced by lldb_private::Watchpoint::VariableWatchpointDisabler().
lldb::watch_id_t lldb_private::Watchpoint::WatchpointVariableContext::watch_id |
The ID of the watchpoint.
Definition at line 108 of file Watchpoint.h.
Referenced by lldb_private::Watchpoint::VariableWatchpointDisabler().