Add support for breaking into debugger for Linux

Use Linux-specific /proc/$PID/status file to check whether we're being
debugged and a generic raise(SIGTRAP) to actually break into the debugger.
This commit is contained in:
Vadim Zeitlin 2016-02-05 14:56:20 +01:00 committed by Martin Hořeňovský
parent e3659cdddd
commit b634e592da
3 changed files with 33 additions and 0 deletions

View file

@ -15,6 +15,8 @@
#define CATCH_PLATFORM_IPHONE
#elif defined(WIN32) || defined(__WIN32__) || defined(_WIN32) || defined(_MSC_VER)
#define CATCH_PLATFORM_WINDOWS
#elif defined(linux) || defined(__linux) || defined(__linux__)
#define CATCH_PLATFORM_LINUX
#endif
#endif // TWOBLUECUBES_CATCH_PLATFORM_H_INCLUDED