move defines to c++
parent
465f1a4fc8
commit
215220f98b
|
@ -7,24 +7,6 @@
|
||||||
#ifndef BLT_ASSERT_H
|
#ifndef BLT_ASSERT_H
|
||||||
#define BLT_ASSERT_H
|
#define BLT_ASSERT_H
|
||||||
|
|
||||||
#ifdef __GNUC__
|
|
||||||
|
|
||||||
#include <execinfo.h>
|
|
||||||
#include <cstdlib>
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __GNUC__
|
|
||||||
#define BLT_STACK_TRACE(number) void* ptrs[number]; \
|
|
||||||
int size = backtrace(ptrs, number); \
|
|
||||||
char** messages = backtrace_symbols(ptrs, size);
|
|
||||||
|
|
||||||
#define BLT_FREE_STACK_TRACE() free(messages);
|
|
||||||
#else
|
|
||||||
#define BLT_STACK_TRACE(number) void();
|
|
||||||
#define BLT_FREE_STACK_TRACE() void();
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace blt
|
namespace blt
|
||||||
{
|
{
|
||||||
void printStacktrace(char** messages, int size, const char* path, int line);
|
void printStacktrace(char** messages, int size, const char* path, int line);
|
||||||
|
|
|
@ -10,6 +10,24 @@
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
|
#ifdef __GNUC__
|
||||||
|
|
||||||
|
#include <execinfo.h>
|
||||||
|
#include <cstdlib>
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef __GNUC__
|
||||||
|
#define BLT_STACK_TRACE(number) void* ptrs[number]; \
|
||||||
|
int size = backtrace(ptrs, number); \
|
||||||
|
char** messages = backtrace_symbols(ptrs, size);
|
||||||
|
|
||||||
|
#define BLT_FREE_STACK_TRACE() free(messages);
|
||||||
|
#else
|
||||||
|
#define BLT_STACK_TRACE(number) void();
|
||||||
|
#define BLT_FREE_STACK_TRACE() void();
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace blt {
|
namespace blt {
|
||||||
|
|
||||||
static inline std::string _macro_filename(const std::string& path){
|
static inline std::string _macro_filename(const std::string& path){
|
||||||
|
|
Loading…
Reference in New Issue