From 07b0148ff9148b07d3d100e4a57c3a5fc873029d Mon Sep 17 00:00:00 2001 From: Marin Ramesa Date: Fri, 29 Nov 2013 22:53:45 +0100 Subject: i386/i386/pcb.c: remove forward declarations * i386/i386/pcb.c (Load_context, Switch_context, Thread_continue, user_ldt_free): Remove forward declarations. * i386/i386/pcb.h (Load_context, Switch_context, Thread_continue): Add prototypes. * i386/i386/user_ldt.h (user_ldt_free): Add prototype. --- i386/i386/pcb.c | 6 ------ i386/i386/pcb.h | 6 ++++++ i386/i386/user_ldt.h | 3 +++ 3 files changed, 9 insertions(+), 6 deletions(-) (limited to 'i386') diff --git a/i386/i386/pcb.c b/i386/i386/pcb.c index bb30959..02627ae 100644 --- a/i386/i386/pcb.c +++ b/i386/i386/pcb.c @@ -60,12 +60,6 @@ #include #endif -extern thread_t Load_context(); -extern thread_t Switch_context(); -extern void Thread_continue(); - -extern void user_ldt_free(); - struct kmem_cache pcb_cache; vm_offset_t kernel_stack[NCPUS]; /* top of active_stack */ diff --git a/i386/i386/pcb.h b/i386/i386/pcb.h index 9edc594..cea2fe2 100644 --- a/i386/i386/pcb.h +++ b/i386/i386/pcb.h @@ -72,4 +72,10 @@ extern void switch_ktss (pcb_t pcb); extern void update_ktss_iopb (unsigned char *new_iopb, io_port_t size); +extern thread_t Load_context (thread_t new); + +extern thread_t Switch_context (thread_t old, void (*continuation)(), thread_t new); + +extern void Thread_continue (void); + #endif /* _I386_PCB_H_ */ diff --git a/i386/i386/user_ldt.h b/i386/i386/user_ldt.h index c90273f..26caa27 100644 --- a/i386/i386/user_ldt.h +++ b/i386/i386/user_ldt.h @@ -44,4 +44,7 @@ struct user_ldt { }; typedef struct user_ldt * user_ldt_t; +extern void +user_ldt_free(user_ldt_t user_ldt); + #endif /* _I386_USER_LDT_H_ */ -- cgit v1.2.3