diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-29 22:54:08 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-05 06:45:10 +0900 |
commit | 55d31d595952e67e16f81f7ef60eda96fe577da4 (patch) | |
tree | 574cdb9ef4081ea88bb9e30ad3adea146badcef1 /i386 | |
parent | 4c427f351acb585bf06f63218cb8ced221d889e0 (diff) |
kern/thread.c: remove forward declaration
* i386/i386/pcb.h (pcb_module_init): Add prototype.
* kern/thread.c (pcb_module_init): Remove forward declaration.
Diffstat (limited to 'i386')
-rw-r--r-- | i386/i386/pcb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/i386/i386/pcb.h b/i386/i386/pcb.h index 4aad0b2..b2e5f07 100644 --- a/i386/i386/pcb.h +++ b/i386/i386/pcb.h @@ -80,4 +80,6 @@ extern thread_t Switch_context (thread_t old, void (*continuation)(), thread_t n extern void Thread_continue (void); +extern void pcb_module_init (void); + #endif /* _I386_PCB_H_ */ |