7#ifndef PXR_BASE_ARCH_DEBUGGER_H
8#define PXR_BASE_ARCH_DEBUGGER_H
14#include "pxr/base/arch/api.h"
17PXR_NAMESPACE_OPEN_SCOPE
86#if defined(ARCH_COMPILER_GCC) || defined(ARCH_COMPILER_CLANG)
87#define ARCH_DEBUGGER_TRAP do { ArchDebuggerTrap(); asm(""); } while (0)
89#define ARCH_DEBUGGER_TRAP do { ArchDebuggerTrap(); } while (0)
92PXR_NAMESPACE_CLOSE_SCOPE
Define function attributes.
#define ARCH_NOINLINE
Macro used to indicate that a function should never be inlined.
ARCH_API void ArchDebuggerTrap() ARCH_NOINLINE
Stop in a debugger.
ARCH_API void ArchAbort(bool logging=true)
Abort.
ARCH_API bool ArchDebuggerIsAttached() ARCH_NOINLINE
Test if a debugger is attached.
ARCH_API bool ArchDebuggerAttach() ARCH_NOINLINE
Attach a debugger.
ARCH_API void ArchDebuggerWait(bool wait)
Cause debug traps to wait for the debugger or not.