Fix incorrect mutex break in DN_ASYNC unqueueing

This commit is contained in:
2025-06-30 22:12:19 +10:00
parent d4adf81019
commit 941f61ec34
4 changed files with 35 additions and 13 deletions
+7 -1
View File
@@ -23,7 +23,13 @@ struct DN_ASYNCCore
DN_U32 join_threads;
};
typedef void(DN_ASYNCWorkFunc)(void *input);
struct DN_ASYNCWorkArgs
{
DN_OSThread *thread;
void *input;
};
typedef void(DN_ASYNCWorkFunc)(DN_ASYNCWorkArgs work_args);
struct DN_ASYNCWork
{