debug: move the panic code out of assert
This commit is contained in:
parent
6f8197c0e2
commit
6de8ed4831
@ -6,35 +6,4 @@
|
||||
* Copyright 2010-2019 Danny Robson <danny@nerdcruft.net>
|
||||
*/
|
||||
|
||||
#include "./assert.hpp"
|
||||
|
||||
#include "../backtrace.hpp"
|
||||
#include "../log.hpp"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
void
|
||||
cruft::debug::detail::panic (const char *msg)
|
||||
{
|
||||
std::cerr << "PANIC: " << msg << "\n" << ::cruft::backtrace () << std::endl;
|
||||
breakpoint ();
|
||||
abort ();
|
||||
}
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
void
|
||||
cruft::debug::detail::not_implemented (const char *msg)
|
||||
{
|
||||
panic (msg);
|
||||
}
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
void
|
||||
cruft::debug::detail::unreachable (const char *msg)
|
||||
{
|
||||
panic (msg);
|
||||
}
|
||||
#include "./assert.hpp"
|
@ -1 +1,32 @@
|
||||
#include "panic.hpp"
|
||||
#include "panic.hpp"
|
||||
|
||||
#include "./debugger.hpp"
|
||||
|
||||
#include "../backtrace.hpp"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
void
|
||||
cruft::debug::detail::panic (const char *msg)
|
||||
{
|
||||
std::cerr << "PANIC: " << msg << "\n" << ::cruft::backtrace () << std::endl;
|
||||
breakpoint ();
|
||||
abort ();
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
void
|
||||
cruft::debug::detail::not_implemented (const char *msg)
|
||||
{
|
||||
panic (msg);
|
||||
}
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
void
|
||||
cruft::debug::detail::unreachable (const char *msg)
|
||||
{
|
||||
panic (msg);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user