summaryrefslogtreecommitdiff
path: root/arch/score/include/asm/switch_to.h
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2012-03-28 21:30:02 +0400
committerDavid Howells <dhowells@redhat.com>2012-03-28 21:30:02 +0400
commit4eb14db4440febb7e560eb8ab2c099bc6e11a0ac (patch)
tree6a4d408111b670220c1515c1f688657c65b757cd /arch/score/include/asm/switch_to.h
parenta0616cdebcfd575dcd4c46102d1b52fbb827fc29 (diff)
downloadlinux-4eb14db4440febb7e560eb8ab2c099bc6e11a0ac.tar.xz
Disintegrate asm/system.h for Score
Disintegrate asm/system.h for Score. Not compiled. Signed-off-by: David Howells <dhowells@redhat.com> cc: Chen Liqin <liqin.chen@sunplusct.com>
Diffstat (limited to 'arch/score/include/asm/switch_to.h')
-rw-r--r--arch/score/include/asm/switch_to.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/score/include/asm/switch_to.h b/arch/score/include/asm/switch_to.h
new file mode 100644
index 000000000000..031756b59ece
--- /dev/null
+++ b/arch/score/include/asm/switch_to.h
@@ -0,0 +1,13 @@
+#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 */