smp.h 294 字节
Newer Older
G
Glauber Costa 已提交
1 2 3 4
#ifndef _ASM_X86_SMP_H_
#define _ASM_X86_SMP_H_
#ifndef __ASSEMBLY__

5 6 7 8 9
#ifdef CONFIG_X86_32
# include "smp_32.h"
#else
# include "smp_64.h"
#endif
G
Glauber Costa 已提交
10

11 12 13
extern void smp_alloc_memory(void);
extern void lock_ipi_call_lock(void);
extern void unlock_ipi_call_lock(void);
G
Glauber Costa 已提交
14 15
#endif /* __ASSEMBLY__ */
#endif