Remove misleading comment

This commit is contained in:
2025-08-21 15:31:15 -04:00
parent 21ac6c6efa
commit 810b5e006d

View File

@@ -36,8 +36,6 @@
//
// Memory Model:
// - Ring buffer size must be power of 2 for efficient masking
// - Uses 64-bit indices to avoid ABA problems (indices never repeat until
// uint32_t overflow)
// - Actual ring slots accessed via: index & (slotCount - 1)
// - 128-byte aligned atomics prevent false sharing between CPU cache lines
//