sketch out new async path for ctrl memory streaming

This commit is contained in:
Ryan Fleury
2025-09-23 10:58:17 -07:00
parent 2ce581fa19
commit 9787c698e6
12 changed files with 263 additions and 56 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ mtx_init(void)
internal void
mtx_push_op(C_Key buffer_key, MTX_Op op)
{
U64 hash = c_little_hash_from_data(str8_struct(&buffer_key));
U64 hash = u64_hash_from_str8(str8_struct(&buffer_key));
MTX_MutThread *thread = &mtx_shared->mut_threads[hash%mtx_shared->mut_threads_count];
mtx_enqueue_op(thread, buffer_key, op);
}