wip: fix existing todos

Co-authored-by: Github CoPilot
This commit is contained in:
2026-06-16 22:48:04 +02:00
parent a5618d3c5f
commit 80857e0f0a
10 changed files with 212 additions and 65 deletions
+1
View File
@@ -22,6 +22,7 @@
// doubly linked list implementation for managing threads
typedef struct pthread_list_node {
pthread_t thread;
pthread_mutex_t mutex;
struct pthread_list_node* previous;
struct pthread_list_node* next;
} pthread_list_node;