make queue thread-safe

This commit is contained in:
2025-08-05 00:28:02 +02:00
parent 306e7d8496
commit 1502ef4116
3 changed files with 87 additions and 30 deletions

View File

@@ -8,4 +8,4 @@ It is not production-ready. Use at your own risk.
- Hashmaps - Thread-safe (MT Safe)
- Dynamic strings - Thread-safe (MT Safe)
> Requires linking with the C math library (`-lm`)
- Circular Queue - Not thread-safe (MT Unsafe)
- Circular Queue - Thread-safe (MT Safe)