aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sched.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-01-25 15:08:34 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-25 15:08:34 -0500
commit90739081ef8d5495d50abba9c5d333be9acd872a (patch)
tree37dc5c626940a4bad6d9ffad81b7be12dc44f054 /include/linux/sched.h
parent9745512ce79de686df354dc70a8d1a74d801892d (diff)
softlockup: fix signedness
fix softlockup tunables signedness. mark tunables read-mostly. Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r--include/linux/sched.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index dfc76e172f3f..53534f90a96a 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -269,10 +269,10 @@ extern void softlockup_tick(void);
269extern void spawn_softlockup_task(void); 269extern void spawn_softlockup_task(void);
270extern void touch_softlockup_watchdog(void); 270extern void touch_softlockup_watchdog(void);
271extern void touch_all_softlockup_watchdogs(void); 271extern void touch_all_softlockup_watchdogs(void);
272extern int softlockup_thresh; 272extern unsigned long softlockup_thresh;
273extern unsigned long sysctl_hung_task_check_count; 273extern unsigned long sysctl_hung_task_check_count;
274extern unsigned long sysctl_hung_task_timeout_secs; 274extern unsigned long sysctl_hung_task_timeout_secs;
275extern long sysctl_hung_task_warnings; 275extern unsigned long sysctl_hung_task_warnings;
276#else 276#else
277static inline void softlockup_tick(void) 277static inline void softlockup_tick(void)
278{ 278{