diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2006-08-05 19:14:27 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-08-06 15:57:47 (GMT) |
commit | 9b7f750d446a717d4c8346fbb165b62661019b92 (patch) | |
tree | 300a8d395582cf3d33b5c779ff23c3cf227115bd /include | |
parent | 60c371bc753495f36d3a71338b46030f7fffce3b (diff) | |
download | linux-9b7f750d446a717d4c8346fbb165b62661019b92.tar.xz |
[PATCH] debug_locks.h: add "struct task_struct;"
Removes many, many "declared inside parameter list" warnings on parisc.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/debug_locks.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/debug_locks.h b/include/linux/debug_locks.h index 6a70478..88dafa2 100644 --- a/include/linux/debug_locks.h +++ b/include/linux/debug_locks.h @@ -1,6 +1,8 @@ #ifndef __LINUX_DEBUG_LOCKING_H #define __LINUX_DEBUG_LOCKING_H +struct task_struct; + extern int debug_locks; extern int debug_locks_silent; |