This commit is contained in:
flowerstonezl
2026-03-10 17:56:36 +08:00
commit 993581b2a4
22 changed files with 378 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#pragma once
// Placeholder for a lock-free ring queue.
class LockFreeQueue {
public:
LockFreeQueue() = default;
};