diff options
author | Anton Blanchard <anton@samba.org> | 2005-07-07 17:56:13 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-07 18:23:37 -0700 |
commit | cf36680887d6d942d2119c1ff1dfb2428b0f21f4 (patch) | |
tree | 1290244377993179daabe5f2e0f3f636fbafbc47 /include/linux/syscalls.h | |
parent | 8dc4fd87f229414fc38648508aad7def2275fe81 (diff) | |
download | kernel_samsung_smdk4412-cf36680887d6d942d2119c1ff1dfb2428b0f21f4.zip kernel_samsung_smdk4412-cf36680887d6d942d2119c1ff1dfb2428b0f21f4.tar.gz kernel_samsung_smdk4412-cf36680887d6d942d2119c1ff1dfb2428b0f21f4.tar.bz2 |
[PATCH] move ioprio syscalls into syscalls.h
- Make ioprio syscalls return long, like set/getpriority syscalls.
- Move function prototypes into syscalls.h so we can pick them up in the
32/64bit compat code.
Signed-off-by: Anton Blanchard <anton@samba.org>
Acked-by: Jens Axboe <axboe@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.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 52830b6..425f58c 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h @@ -506,4 +506,7 @@ asmlinkage long sys_request_key(const char __user *_type, asmlinkage long sys_keyctl(int cmd, unsigned long arg2, unsigned long arg3, unsigned long arg4, unsigned long arg5); +asmlinkage long sys_ioprio_set(int which, int who, int ioprio); +asmlinkage long sys_ioprio_get(int which, int who); + #endif |