Home
last modified time | relevance | path

Searched refs:CATCH_TRAP (Results 1 – 2 of 2) sorted by relevance

/external/catch2/include/internal/
Dcatch_debugger.h20 #define CATCH_TRAP() __asm__("int $3\n" : : ) /* NOLINT */ macro
27 #define CATCH_TRAP() asm volatile ("int $3") /* NOLINT */ macro
31 #define CATCH_TRAP() raise(SIGTRAP) macro
34 #define CATCH_TRAP() __debugbreak() macro
37 #define CATCH_TRAP() DebugBreak() macro
40 #ifdef CATCH_TRAP
41 #define CATCH_BREAK_INTO_DEBUGGER() []{ if( Catch::isDebuggerActive() ) { CATCH_TRAP(); } }()
/external/catch2/single_include/catch2/
Dcatch.hpp6014 #define CATCH_TRAP() __asm__("int $3\n" : : ) /* NOLINT */ macro
6021 #define CATCH_TRAP() asm volatile ("int $3") /* NOLINT */ macro
6025 #define CATCH_TRAP() raise(SIGTRAP) macro
6028 #define CATCH_TRAP() __debugbreak() macro
6031 #define CATCH_TRAP() DebugBreak() macro
6034 #ifdef CATCH_TRAP
6035 #define CATCH_BREAK_INTO_DEBUGGER() []{ if( Catch::isDebuggerActive() ) { CATCH_TRAP(); } }()