add prototypes to cpulocal.h

+struct x86_cpu_local_variables *get_x86_this_cpu_local(void);
+void *get_x86_this_cpu_kstack(void);
This commit is contained in:
NAKAMURA Gou
2014-04-03 13:38:25 +09:00
parent 7eeafb0d85
commit c0c9192e1b
2 changed files with 2 additions and 2 deletions

View File

@ -52,8 +52,6 @@
#endif
struct x86_cpu_local_variables *get_x86_this_cpu_local(void);
void *get_x86_this_cpu_kstack(void);
void init_processors_local(int max_id);
void assign_processor_id(void);
void arch_delay(int);

View File

@ -46,6 +46,8 @@ struct x86_cpu_local_variables {
} __attribute__((packed));
struct x86_cpu_local_variables *get_x86_cpu_local_variable(int id);
struct x86_cpu_local_variables *get_x86_this_cpu_local(void);
void *get_x86_this_cpu_kstack(void);
#endif