1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Implement reading sys time on BSD.

This commit is contained in:
Bartosz Taudul
2019-11-21 20:37:53 +01:00
parent c7a22cc1ff
commit 37eef59d54
2 changed files with 21 additions and 1 deletions
+6
View File
@@ -3,6 +3,12 @@
#if defined _WIN32 || defined __CYGWIN__ || defined __linux__ || defined __APPLE__
# define TRACY_HAS_SYSTIME
#else
# include <sys/param.h>
#endif
#ifdef BSD
# define TRACY_HAS_SYSTIME
#endif
#ifdef TRACY_HAS_SYSTIME