summaryrefslogtreecommitdiffstats
path: root/core/templates
diff options
context:
space:
mode:
authorPedro J. Estébanez <pedrojrulez@gmail.com>2023-05-17 01:44:41 +0200
committerPedro J. Estébanez <pedrojrulez@gmail.com>2023-05-17 02:04:41 +0200
commit50cf3d6966f194da1455c97e88da373b93746cea (patch)
tree84a18703267c0d677c61afe88266c7682ccad5e3 /core/templates
parent44cc0d2ec24d26dc5499d23df09fcdfa80c943ab (diff)
downloadredot-engine-50cf3d6966f194da1455c97e88da373b93746cea.tar.gz
Optimize threading-sensitive node data for single-threaded processing
Diffstat (limited to 'core/templates')
-rw-r--r--core/templates/safe_refcount.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/core/templates/safe_refcount.h b/core/templates/safe_refcount.h
index 8669bcaeeb..bfc9f6fc9a 100644
--- a/core/templates/safe_refcount.h
+++ b/core/templates/safe_refcount.h
@@ -50,11 +50,14 @@
// value and, as an important benefit, you can be sure the value is properly synchronized
// even with threads that are already running.
-// This is used in very specific areas of the engine where it's critical that these guarantees are held
+// These are used in very specific areas of the engine where it's critical that these guarantees are held
#define SAFE_NUMERIC_TYPE_PUN_GUARANTEES(m_type) \
static_assert(sizeof(SafeNumeric<m_type>) == sizeof(m_type)); \
static_assert(alignof(SafeNumeric<m_type>) == alignof(m_type)); \
static_assert(std::is_trivially_destructible<std::atomic<m_type>>::value);
+#define SAFE_FLAG_TYPE_PUN_GUARANTEES \
+ static_assert(sizeof(SafeFlag) == sizeof(bool)); \
+ static_assert(alignof(SafeFlag) == alignof(bool));
template <class T>
class SafeNumeric {