summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorRaul E Rangel <rrangel@chromium.org>2021-07-22 12:37:23 -0600
committerPatrick Georgi <pgeorgi@google.com>2021-07-26 07:28:08 +0000
commit7db7ee984c7268b6a60eae051a919e428b2db988 (patch)
tree25462429207623ec7eda70a5630e215a5e262917 /src/include
parentb9d94ecd78c4c85aa27e8b6a692f413eff2ed9a3 (diff)
lib/thread,arch/x86: Move thread stacks into C bss
There is no reason this needs to be done in asm. It also allows different stages to use threads. If threads are no used in a specific stage, the compiler will garbage collect the space. BUG=b:179699789 TEST=Boot guybrush to the OS Suggested-by: Julius Werner <jwerner@chromium.org> Signed-off-by: Raul E Rangel <rrangel@chromium.org> Change-Id: Ib5a84a62fdc75db8ef0358ae16ff69c20cbafd5f Reviewed-on: https://review.coreboot.org/c/coreboot/+/56531 Reviewed-by: Furquan Shaikh <furquan@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/thread.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/include/thread.h b/src/include/thread.h
index fed0bfb964..ce250b8520 100644
--- a/src/include/thread.h
+++ b/src/include/thread.h
@@ -52,11 +52,6 @@ struct thread {
};
void threads_initialize(void);
-/* Get the base of the thread stacks.
- * Returns pointer to CONFIG_NUM_THREADS*CONFIG_STACK_SIZE contiguous bytes
- * aligned to CONFIG_STACK_SIZE, or NULL.
- */
-void *arch_get_thread_stackbase(void);
/* Return 0 on successful yield, < 0 when thread did not yield. */
int thread_yield(void);