2008-03-10 23:28:04 +01:00
|
|
|
#ifndef _ASM_X86_THREAD_INFO_H
|
2007-10-11 11:20:03 +02:00
|
|
|
#ifdef CONFIG_X86_32
|
|
|
|
# include "thread_info_32.h"
|
|
|
|
#else
|
|
|
|
# include "thread_info_64.h"
|
|
|
|
#endif
|
2008-03-10 23:28:04 +01:00
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
extern void arch_task_cache_init(void);
|
|
|
|
extern void free_thread_info(struct thread_info *ti);
|
|
|
|
extern int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src);
|
2008-04-16 10:25:35 +02:00
|
|
|
#define arch_task_cache_init arch_task_cache_init
|
2008-03-10 23:28:04 +01:00
|
|
|
#endif
|
|
|
|
#endif /* _ASM_X86_THREAD_INFO_H */
|