Commit f32ed395 authored by Tim Abbott's avatar Tim Abbott Committed by Kyle McMartin

parisc: Make THREAD_SIZE available to assembly files and linker scripts.

Signed-off-by: default avatarTim Abbott <tabbott@ksplice.com>
Acked-by: default avatarHelge Deller <deller@gmx.de>
Signed-off-by: default avatarKyle McMartin <kyle@mcmartin.ca>
parent fe579c69
...@@ -32,6 +32,11 @@ struct thread_info { ...@@ -32,6 +32,11 @@ struct thread_info {
#define init_thread_info (init_thread_union.thread_info) #define init_thread_info (init_thread_union.thread_info)
#define init_stack (init_thread_union.stack) #define init_stack (init_thread_union.stack)
/* how to get the thread information struct from C */
#define current_thread_info() ((struct thread_info *)mfctl(30))
#endif /* !__ASSEMBLY */
/* thread information allocation */ /* thread information allocation */
#define THREAD_SIZE_ORDER 2 #define THREAD_SIZE_ORDER 2
...@@ -40,11 +45,6 @@ struct thread_info { ...@@ -40,11 +45,6 @@ struct thread_info {
#define THREAD_SIZE (PAGE_SIZE << THREAD_SIZE_ORDER) #define THREAD_SIZE (PAGE_SIZE << THREAD_SIZE_ORDER)
#define THREAD_SHIFT (PAGE_SHIFT + THREAD_SIZE_ORDER) #define THREAD_SHIFT (PAGE_SHIFT + THREAD_SIZE_ORDER)
/* how to get the thread information struct from C */
#define current_thread_info() ((struct thread_info *)mfctl(30))
#endif /* !__ASSEMBLY */
#define PREEMPT_ACTIVE_BIT 28 #define PREEMPT_ACTIVE_BIT 28
#define PREEMPT_ACTIVE (1 << PREEMPT_ACTIVE_BIT) #define PREEMPT_ACTIVE (1 << PREEMPT_ACTIVE_BIT)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment