staging:iio:adc:ad7606 move to info_mask_(shared_by_type/separate)
[linux/fpc-iii.git] / arch / cris / include / asm / switch_to.h
blobd842e1163ba1edf1b61b99995007c7a326ba4b37
1 #ifndef __ASM_CRIS_SWITCH_TO_H
2 #define __ASM_CRIS_SWITCH_TO_H
4 /* the switch_to macro calls resume, an asm function in entry.S which does the actual
5 * task switching.
6 */
8 extern struct task_struct *resume(struct task_struct *prev, struct task_struct *next, int);
9 #define switch_to(prev,next,last) last = resume(prev,next, \
10 (int)&((struct task_struct *)0)->thread)
12 #endif /* __ASM_CRIS_SWITCH_TO_H */