Replaced "__sync_synchronize" with "__sync"

This commit is contained in:
Alex
2023-02-18 04:13:49 +02:00
parent 0fb62e52d2
commit 419b5bee0d
6 changed files with 14 additions and 14 deletions

View File

@ -14,7 +14,7 @@
#ifdef DEBUG_ALLOCATIONS
#define memdbg(m, ...) \
debug(m, ##__VA_ARGS__); \
__sync_synchronize()
__sync
#else
#define memdbg(m, ...)
#endif