fda3f83308d20422c8c7d2f7c023b344693e51df
[sfrench/cifs-2.6.git] / arch / score / include / asm / switch_to.h
1 #ifndef _ASM_SCORE_SWITCH_TO_H
2 #define _ASM_SCORE_SWITCH_TO_H
3
4 extern void *resume(void *last, void *next, void *next_ti);
5
6 #define switch_to(prev, next, last)                             \
7 do {                                                            \
8         (last) = resume(prev, next, task_thread_info(next));    \
9 } while (0)
10
11 #endif /* _ASM_SCORE_SWITCH_TO_H */