LLDB mainline
StoppointCallbackContext.cpp
Go to the documentation of this file.
1//===-- StoppointCallbackContext.cpp --------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
10
11using namespace lldb_private;
12
14
16 Event *e, const ExecutionContext &exe_ctx, bool synchronously)
17 : event(e), exe_ctx_ref(exe_ctx), is_synchronous(synchronously) {}
18
20 event = nullptr;
22 is_synchronous = false;
23}
void Clear()
Clear the object's state.
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14