mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 21:21:47 +00:00
14 lines
334 B
C
14 lines
334 B
C
|
#ifndef _ASM_SCORE_SWITCH_TO_H
|
||
|
#define _ASM_SCORE_SWITCH_TO_H
|
||
|
|
||
|
extern void *resume(void *last, void *next, void *next_ti);
|
||
|
|
||
|
#define switch_to(prev, next, last) \
|
||
|
do { \
|
||
|
(last) = resume(prev, next, task_thread_info(next)); \
|
||
|
} while (0)
|
||
|
|
||
|
#define finish_arch_switch(prev) do {} while (0)
|
||
|
|
||
|
#endif /* _ASM_SCORE_SWITCH_TO_H */
|