shift file streaming layer to using async layer for background work, remove file stream layer thread pool

This commit is contained in:
Ryan Fleury
2024-10-31 11:44:54 -07:00
parent f3a36ece13
commit 86d9b792d8
6 changed files with 115 additions and 101 deletions
+2
View File
@@ -20,6 +20,7 @@ struct ASYNC_WorkParams
void *input;
void **output;
OS_Handle semaphore;
U64 *completion_counter;
U64 endt_us;
};
@@ -30,6 +31,7 @@ struct ASYNC_Work
void *input;
void **output;
OS_Handle semaphore;
U64 *completion_counter;
};
////////////////////////////////