summaryrefslogtreecommitdiffstats
path: root/src/lib/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/thread.c')
-rw-r--r--src/lib/thread.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/thread.c b/src/lib/thread.c
index adfc298a7184..dc83df06684c 100644
--- a/src/lib/thread.c
+++ b/src/lib/thread.c
@@ -1,14 +1,12 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#include <assert.h>
-#include <stddef.h>
-#include <stdint.h>
-#include <stdlib.h>
#include <bootstate.h>
#include <console/console.h>
#include <smp/node.h>
#include <thread.h>
#include <timer.h>
+#include <types.h>
static u8 thread_stacks[CONFIG_STACK_SIZE * CONFIG_NUM_THREADS] __aligned(sizeof(uint64_t));
static bool initialized;