summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorIngo Molnar2007-11-28 15:52:56 +0100
committerIngo Molnar2007-11-28 15:52:56 +0100
commitdeaf2227ddf657a260e923db44b6f0974d9bb782 (patch)
tree2743a42c23a2341476a34522a6fdffa7848553d9 /include
parentsched: clean up sd_alloc_ctl_cpu_table() definition (diff)
downloadkernel-qcow2-linux-deaf2227ddf657a260e923db44b6f0974d9bb782.tar.gz
kernel-qcow2-linux-deaf2227ddf657a260e923db44b6f0974d9bb782.tar.xz
kernel-qcow2-linux-deaf2227ddf657a260e923db44b6f0974d9bb782.zip
sched: clean up, move __sched_text_start/end to sched.h
move __sched_text_start/end to sched.h. No code changed: text data bss dec hex filename 26582 2310 28 28920 70f8 sched.o.before 26582 2310 28 28920 70f8 sched.o.after Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include')
-rw-r--r--include/linux/sched.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index ee800e7a70de..ac3d496fbd20 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -282,6 +282,10 @@ static inline void touch_all_softlockup_watchdogs(void)
/* Attach to any functions which should be ignored in wchan output. */
#define __sched __attribute__((__section__(".sched.text")))
+
+/* Linker adds these: start and end of __sched functions */
+extern char __sched_text_start[], __sched_text_end[];
+
/* Is this address in the __sched functions? */
extern int in_sched_functions(unsigned long addr);