[PATCH] kernel/sys.c: cleanups

- proper prototypes for the following functions:
  - ctrl_alt_del()  (in include/linux/reboot.h)
  - getrusage()     (in include/linux/resource.h)
- make the following needlessly global functions static:
  - kernel_restart_prepare()
  - kernel_kexec()

[akpm@osdl.org: compile fix]
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Adrian Bunk 2006-06-25 05:47:41 -07:00 committed by Linus Torvalds
parent 76a8ad2939
commit 83cc5ed3c4
11 changed files with 15 additions and 18 deletions

View file

@ -3,6 +3,8 @@
#include <linux/time.h>
struct task_struct;
/*
* Resource control/accounting header file for linux
*/
@ -67,4 +69,6 @@ struct rlimit {
*/
#include <asm/resource.h>
int getrusage(struct task_struct *p, int who, struct rusage __user *ru);
#endif