summaryrefslogtreecommitdiff
path: root/core/thread/start_thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/thread/start_thread.c')
-rw-r--r--core/thread/start_thread.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/core/thread/start_thread.c b/core/thread/start_thread.c
index dd2a4de1..328d6e7b 100644
--- a/core/thread/start_thread.c
+++ b/core/thread/start_thread.c
@@ -8,16 +8,6 @@
extern void __start_thread(void);
-/*
- * Stack frame used by __switch_to, see thread_asm.S
- */
-struct thread_stack {
- int errno;
- uint16_t rmsp, rmss;
- uint32_t edi, esi, ebp, ebx;
- void (*eip)(void);
-};
-
struct thread *start_thread(const char *name, size_t stack_size, int prio,
void (*start_func)(void *), void *func_arg)
{