diff options
| author | Randolph Chung <randolph@tausq.org> | 2004-09-29 03:35:37 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-09-29 03:35:37 -0700 |
| commit | 77eb355870ff3c0ded507a3fdd8ca84ea6d1d6c3 (patch) | |
| tree | b5d82570924fddb908423be2e3649bd4eb11e7c2 /include/linux/syscalls.h | |
| parent | 7b4bc2010062b1db483085febed384697bd7eff7 (diff) | |
[PATCH] add missing declaration to fix kernel/compat.c warning
Fixes a warning in kernel/compat.c.
Signed-off-by: Randolph Chung <tausq@debian.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/syscalls.h')
| -rw-r--r-- | include/linux/syscalls.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index c08b42e2bee4..bd26cf298d9a 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h @@ -114,6 +114,9 @@ asmlinkage long sys_getitimer(int which, struct itimerval __user *value); asmlinkage long sys_setitimer(int which, struct itimerval __user *value, struct itimerval __user *ovalue); +asmlinkage long sys_timer_create(clockid_t which_clock, + struct sigevent __user *timer_event_spec, + timer_t __user * created_timer_id); asmlinkage long sys_timer_gettime(timer_t timer_id, struct itimerspec __user *setting); asmlinkage long sys_timer_getoverrun(timer_t timer_id); |
