From 94f2b0b8f48f5715975446c637a078008fb7e941 Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Fri, 18 Mar 2022 12:57:53 -0700 Subject: Generalized Queue --- include/globals.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'include/globals.h') diff --git a/include/globals.h b/include/globals.h index ce98c97..24bd4f5 100644 --- a/include/globals.h +++ b/include/globals.h @@ -15,9 +15,8 @@ extern unsigned long stimeh; extern struct Scheduler scheduler; extern struct Thread usrloopthread; extern unsigned int gwidth, gheight, gpitch, gisrgb; -extern unsigned char thread_table[MAX_THREADS]; extern struct Thread threads[MAX_THREADS]; -extern struct ThreadEntry thread_entries[MAX_THREADS]; +extern struct Entry thread_entries[MAX_THREADS]; extern unsigned long mutex_table[MAX_MUTEXS]; extern struct Mutex mutexs[MAX_MUTEXS]; #endif -- cgit v1.2.1