diff options
author | WANG Cong <xiyou.wangcong@gmail.com> | 2008-02-05 01:30:41 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-05 12:44:25 -0500 |
commit | c0a9290ecf0dbb89958cb3a3f78964015a7de402 (patch) | |
tree | 1a987905fe5047cd74966149fc11689713cd7bea /arch/um/include/kern_util.h | |
parent | 9226b8384776798986640ce07764d17ba66aa54f (diff) |
uml: const and other tidying
This patch also does some improvements for uml code. Improvements include
dropping unnecessary cast, killing some unnecessary code and still some
constifying for pointers etc..
Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com>
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/include/kern_util.h')
-rw-r--r-- | arch/um/include/kern_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/include/kern_util.h b/arch/um/include/kern_util.h index 74ce8e5370a6..aa27eb0f4586 100644 --- a/arch/um/include/kern_util.h +++ b/arch/um/include/kern_util.h | |||
@@ -81,7 +81,7 @@ extern void do_uml_exitcalls(void); | |||
81 | extern int attach_debugger(int idle_pid, int pid, int stop); | 81 | extern int attach_debugger(int idle_pid, int pid, int stop); |
82 | extern int config_gdb(char *str); | 82 | extern int config_gdb(char *str); |
83 | extern int remove_gdb(void); | 83 | extern int remove_gdb(void); |
84 | extern char *uml_strdup(char *string); | 84 | extern char *uml_strdup(const char *string); |
85 | extern void unprotect_kernel_mem(void); | 85 | extern void unprotect_kernel_mem(void); |
86 | extern void protect_kernel_mem(void); | 86 | extern void protect_kernel_mem(void); |
87 | extern void uml_cleanup(void); | 87 | extern void uml_cleanup(void); |