summaryrefslogtreecommitdiff
path: root/include/asm-generic/vmlinux.lds.h
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2004-05-09 23:55:27 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-05-09 23:55:27 -0700
commita7c8a1d320ff544a044f6fac5c7fda557f5ef60c (patch)
treeb1ab64fe86b137b1548c6e8d9cdb650d8c85c17c /include/asm-generic/vmlinux.lds.h
parente736428d8be55699f3d9626f5196402a3702575b (diff)
[PATCH] sched: in_sched_functions() cleanup
From: Rusty Russell <rusty@rustcorp.com.au> 1) Create an in_sched_functions() function in sched.c and make the archs use it. (Two archs have wchan #if 0'd out: left them alone). 2) Move __sched from linux/init.h to linux/sched.h and add comment. 3) Rename __scheduling_functions_start_here/end_here to __sched_text_start/end. Thanks to wli and Sam Ravnborg for clue donation.
Diffstat (limited to 'include/asm-generic/vmlinux.lds.h')
-rw-r--r--include/asm-generic/vmlinux.lds.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h
index a4b6c768cf49..4d0cff2860d1 100644
--- a/include/asm-generic/vmlinux.lds.h
+++ b/include/asm-generic/vmlinux.lds.h
@@ -53,6 +53,6 @@
}
#define SCHED_TEXT \
- __scheduling_functions_start_here = .; \
+ __sched_text_start = .; \
*(.sched.text) \
- __scheduling_functions_end_here = .;
+ __sched_text_end = .;