Use AoS for modules instead of SoA

This commit is contained in:
2025-04-18 14:39:09 +03:00
parent dcf863bf26
commit 09d5020494
5 changed files with 70 additions and 91 deletions

View File

@@ -2,7 +2,7 @@
#include <stdatomic.h>
_Atomic bool hiload_verbose_log = true;
_Atomic bool hiload_verbose_log = false;
void log_set_verbose(bool value) {
atomic_store_explicit(&hiload_verbose_log, value, memory_order_relaxed);