mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
GCC/Linux version of NLMISC_BREAKPOINT
This commit is contained in:
parent
958f66a8e9
commit
28ffc449c4
1 changed files with 4 additions and 2 deletions
|
@ -350,8 +350,10 @@ void setCrashAlreadyReported(bool state);
|
|||
*/
|
||||
|
||||
// removed because we always check assert (even in release mode) #if defined (NL_OS_WINDOWS) && defined (NL_DEBUG)
|
||||
#if defined (NL_OS_WINDOWS)
|
||||
#define NLMISC_BREAKPOINT __debugbreak();
|
||||
#if defined(NL_OS_WINDOWS)
|
||||
#define NLMISC_BREAKPOINT __debugbreak()
|
||||
#elif defined(NL_OS_UNIX) && defined(NL_COMP_GCC)
|
||||
#define NLMISC_BREAKPOINT __builtin_trap()
|
||||
#else
|
||||
#define NLMISC_BREAKPOINT abort()
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue