2017-10-14 14:52:05 +00:00
|
|
|
#ifndef __TRACYALLOC_HPP__
|
|
|
|
#define __TRACYALLOC_HPP__
|
2018-06-30 09:39:55 +00:00
|
|
|
#include <cstdlib>
|
2017-10-14 14:52:05 +00:00
|
|
|
|
2017-10-18 17:08:19 +00:00
|
|
|
#ifdef TRACY_ENABLE
|
|
|
|
# include "../client/tracy_rpmalloc.hpp"
|
|
|
|
#endif
|
2017-10-14 14:52:05 +00:00
|
|
|
|
|
|
|
namespace tracy
|
|
|
|
{
|
|
|
|
|
|
|
|
static inline void* tracy_malloc( size_t size )
|
|
|
|
{
|
2017-10-18 17:08:19 +00:00
|
|
|
#ifdef TRACY_ENABLE
|
2017-10-14 14:52:05 +00:00
|
|
|
return rpmalloc( size );
|
2017-10-18 17:08:19 +00:00
|
|
|
#else
|
|
|
|
return malloc( size );
|
|
|
|
#endif
|
2017-10-14 14:52:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void tracy_free( void* ptr )
|
|
|
|
{
|
2017-10-18 17:08:19 +00:00
|
|
|
#ifdef TRACY_ENABLE
|
2017-10-14 14:52:05 +00:00
|
|
|
rpfree( ptr );
|
2017-10-18 17:08:19 +00:00
|
|
|
#else
|
|
|
|
free( ptr );
|
|
|
|
#endif
|
2017-10-14 14:52:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|