LLDB mainline
Classes | Namespaces | Macros
Debugger.h File Reference
#include <cstdint>
#include <memory>
#include <optional>
#include <vector>
#include "lldb/Core/DebuggerEvents.h"
#include "lldb/Core/FormatEntity.h"
#include "lldb/Core/IOHandler.h"
#include "lldb/Core/SourceManager.h"
#include "lldb/Core/UserSettingsController.h"
#include "lldb/Host/HostThread.h"
#include "lldb/Host/StreamFile.h"
#include "lldb/Host/Terminal.h"
#include "lldb/Target/ExecutionContext.h"
#include "lldb/Target/Platform.h"
#include "lldb/Target/TargetList.h"
#include "lldb/Utility/Broadcaster.h"
#include "lldb/Utility/ConstString.h"
#include "lldb/Utility/Diagnostics.h"
#include "lldb/Utility/FileSpec.h"
#include "lldb/Utility/Status.h"
#include "lldb/Utility/UserID.h"
#include "lldb/lldb-defines.h"
#include "lldb/lldb-enumerations.h"
#include "lldb/lldb-forward.h"
#include "lldb/lldb-private-enumerations.h"
#include "lldb/lldb-private-types.h"
#include "lldb/lldb-types.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/StringMap.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/DynamicLibrary.h"
#include "llvm/Support/FormatVariadic.h"
#include "llvm/Support/Threading.h"
#include <cassert>
#include <cstddef>
#include <cstdio>

Go to the source code of this file.

Classes

class  lldb_private::Debugger
 A class to manage flag bits. More...
 
class  lldb_private::Debugger::InterruptionReport
 

Namespaces

namespace  llvm
 
namespace  lldb_private
 A class that represents a running process on the host machine.
 
namespace  lldb_private::repro
 

Macros

#define INTERRUPT_REQUESTED(debugger, ...)    (debugger).InterruptRequested(__func__, __VA_ARGS__)
 This handy define will keep you from having to generate a report for the interruption by hand.
 
#define REPORT_INTERRUPTION(debugger, ...)
 

Macro Definition Documentation

◆ INTERRUPT_REQUESTED

#define INTERRUPT_REQUESTED (   debugger,
  ... 
)     (debugger).InterruptRequested(__func__, __VA_ARGS__)

This handy define will keep you from having to generate a report for the interruption by hand.

Use this except in the case where the arguments to the message description are expensive to compute.

Definition at line 454 of file Debugger.h.

◆ REPORT_INTERRUPTION

#define REPORT_INTERRUPTION (   debugger,
  ... 
)
Value:
(debugger).ReportInterruption( \
Debugger::InterruptionReport(__func__, __VA_ARGS__))

Definition at line 485 of file Debugger.h.