diff options
Diffstat (limited to 'kernel/fork.c')
-rw-r--r-- | kernel/fork.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/kernel/fork.c b/kernel/fork.c index 44a18192c420..89fe414645e9 100644 --- a/kernel/fork.c +++ b/kernel/fork.c | |||
@@ -132,9 +132,13 @@ void __put_task_struct(struct task_struct *tsk) | |||
132 | free_task(tsk); | 132 | free_task(tsk); |
133 | } | 133 | } |
134 | 134 | ||
135 | void __attribute__((weak)) arch_task_cache_init(void) | 135 | /* |
136 | { | 136 | * macro override instead of weak attribute alias, to workaround |
137 | } | 137 | * gcc 4.1.0 and 4.1.1 bugs with weak attribute and empty functions. |
138 | */ | ||
139 | #ifndef arch_task_cache_init | ||
140 | #define arch_task_cache_init() | ||
141 | #endif | ||
138 | 142 | ||
139 | void __init fork_init(unsigned long mempages) | 143 | void __init fork_init(unsigned long mempages) |
140 | { | 144 | { |