diff options
author | Al Viro <viro@parcelfarce.linux.theplanet.co.uk> | 2005-11-13 19:06:56 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-13 21:14:13 -0500 |
commit | 10ebffde3d3916026974352b7900e44afe2b243f (patch) | |
tree | ac88fa33694f5bea1b6958e1e56bcd4c9b95b002 /include/linux/sched.h | |
parent | a1261f54611ec4ad6a7ab7080f86747e3ac3685b (diff) |
[PATCH] m68k: introduce setup_thread_stack() and end_of_stack()
encapsulates the rest of arch-dependent operations with thread_info access.
Two new helpers - setup_thread_stack() and end_of_stack(). For normal case
the former consists of copying thread_info of parent to new thread_info and
the latter returns pointer immediately past the end of thread_info.
Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk>
Signed-off-by: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r-- | include/linux/sched.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index f8650314ba2f..e4681256e43e 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -1235,6 +1235,17 @@ static inline void task_unlock(struct task_struct *p) | |||
1235 | 1235 | ||
1236 | #define task_thread_info(task) (task)->thread_info | 1236 | #define task_thread_info(task) (task)->thread_info |
1237 | 1237 | ||
1238 | static inline void setup_thread_stack(struct task_struct *p, struct task_struct *org) | ||
1239 | { | ||
1240 | *task_thread_info(p) = *task_thread_info(org); | ||
1241 | task_thread_info(p)->task = p; | ||
1242 | } | ||
1243 | |||
1244 | static inline unsigned long *end_of_stack(struct task_struct *p) | ||
1245 | { | ||
1246 | return (unsigned long *)(p->thread_info + 1); | ||
1247 | } | ||
1248 | |||
1238 | /* set thread flags in other task's structures | 1249 | /* set thread flags in other task's structures |
1239 | * - see asm/thread_info.h for TIF_xxxx flags available | 1250 | * - see asm/thread_info.h for TIF_xxxx flags available |
1240 | */ | 1251 | */ |