summaryrefslogtreecommitdiff
path: root/firmware/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/thread.c')
-rw-r--r--firmware/thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/thread.c b/firmware/thread.c
index 81ef42a6b0..7c2cfb23e9 100644
--- a/firmware/thread.c
+++ b/firmware/thread.c
@@ -119,7 +119,7 @@
119/* Cast to the the machine pointer size, whose size could be < 4 or > 32 119/* Cast to the the machine pointer size, whose size could be < 4 or > 32
120 * (someday :). */ 120 * (someday :). */
121#define DEADBEEF ((uintptr_t)0xdeadbeefdeadbeefull) 121#define DEADBEEF ((uintptr_t)0xdeadbeefdeadbeefull)
122struct core_entry cores[NUM_CORES] IBSS_ATTR; 122static struct core_entry cores[NUM_CORES] IBSS_ATTR;
123struct thread_entry threads[MAXTHREADS] IBSS_ATTR; 123struct thread_entry threads[MAXTHREADS] IBSS_ATTR;
124 124
125static const char main_thread_name[] = "main"; 125static const char main_thread_name[] = "main";