diff options
author | Christian Cunningham <cc@localhost> | 2022-03-18 12:57:53 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-03-18 12:57:53 -0700 |
commit | 94f2b0b8f48f5715975446c637a078008fb7e941 (patch) | |
tree | 2fb1744748e3bd4c93b2dae65a6033763c17e737 /src/globals.c | |
parent | 7ea4a4e970ae4a72ac7b58e98d232662d580ed47 (diff) |
Generalized Queue
Diffstat (limited to 'src/globals.c')
-rw-r--r-- | src/globals.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/globals.c b/src/globals.c index a8cb47b..944f01e 100644 --- a/src/globals.c +++ b/src/globals.c @@ -19,6 +19,5 @@ __attribute__((section(".bss"))) unsigned int gpitch; __attribute__((section(".bss"))) unsigned int gisrgb; __attribute__((section(".bss.mutexl"))) unsigned long mutex_table[MAX_MUTEXS]; __attribute__((section(".bss.mutexs"))) struct Mutex mutexs[MAX_MUTEXS]; -__attribute__((section(".bss.threadl"))) unsigned char thread_table[MAX_THREADS]; __attribute__((section(".bss.threads"))) struct Thread threads[MAX_THREADS]; -__attribute__((section(".bss.threade"))) struct ThreadEntry thread_entries[MAX_THREADS]; +__attribute__((section(".bss.threade"))) struct Entry thread_entries[MAX_THREADS]; |