2019-01-27 12:41:32 +00:00
|
|
|
#ifndef __TRACYCALLSTACK_H__
|
|
|
|
#define __TRACYCALLSTACK_H__
|
|
|
|
|
2022-02-22 19:50:04 +00:00
|
|
|
#ifndef TRACY_NO_CALLSTACK
|
2019-11-21 01:34:42 +00:00
|
|
|
|
2022-02-22 19:50:04 +00:00
|
|
|
# if !defined _WIN32
|
|
|
|
# include <sys/param.h>
|
2019-05-22 12:14:30 +00:00
|
|
|
# endif
|
2022-02-22 19:50:04 +00:00
|
|
|
|
|
|
|
# if defined _WIN32
|
|
|
|
# include "../common/TracyUwp.hpp"
|
|
|
|
# ifndef TRACY_UWP
|
|
|
|
# define TRACY_HAS_CALLSTACK 1
|
|
|
|
# endif
|
|
|
|
# elif defined __ANDROID__
|
|
|
|
# if !defined __arm__ || __ANDROID_API__ >= 21
|
|
|
|
# define TRACY_HAS_CALLSTACK 2
|
|
|
|
# else
|
|
|
|
# define TRACY_HAS_CALLSTACK 5
|
|
|
|
# endif
|
|
|
|
# elif defined __linux
|
|
|
|
# if defined _GNU_SOURCE && defined __GLIBC__
|
|
|
|
# define TRACY_HAS_CALLSTACK 3
|
|
|
|
# else
|
|
|
|
# define TRACY_HAS_CALLSTACK 2
|
|
|
|
# endif
|
|
|
|
# elif defined __APPLE__
|
|
|
|
# define TRACY_HAS_CALLSTACK 4
|
|
|
|
# elif defined BSD
|
|
|
|
# define TRACY_HAS_CALLSTACK 6
|
2019-01-27 12:41:32 +00:00
|
|
|
# endif
|
2022-02-22 19:50:04 +00:00
|
|
|
|
2019-01-27 12:41:32 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|