//===-- Debug.h -------------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLDB_HOST_DEBUG_H #define LLDB_HOST_DEBUG_H #include <vector> #include "lldb/lldb-private.h" namespace lldb_private { // Tells a thread what it needs to do when the process is resumed. struct ResumeAction { … }; // A class that contains instructions for all threads for // NativeProcessProtocol::Resume(). Each thread can either run, stay suspended, // or step when the process is resumed. We optionally have the ability to also // send a signal to the thread when the action is run or step. class ResumeActionList { … }; struct ThreadStopInfo { … }; } #endif // LLDB_HOST_DEBUG_H