diff options
author | Adrian Bunk <bunk@kernel.org> | 2007-11-02 16:43:22 +0100 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2007-11-05 21:53:46 +1100 |
commit | fad23fc78b959dae89768e523c3a6f5edb83bbe9 (patch) | |
tree | b4a5f9844b5d2c412a92c528a84ce9cf6d2299da /include/linux/futex.h | |
parent | 02c3530da6b926b31f89ba589da72eca49557edd (diff) | |
download | talos-obmc-linux-fad23fc78b959dae89768e523c3a6f5edb83bbe9.tar.gz talos-obmc-linux-fad23fc78b959dae89768e523c3a6f5edb83bbe9.zip |
kernel/futex.c: make 3 functions static
The following functions can now become static again:
- get_futex_key()
- get_futex_key_refs()
- drop_futex_key_refs()
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'include/linux/futex.h')
-rw-r--r-- | include/linux/futex.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/futex.h b/include/linux/futex.h index 99650353adfa..92d420fe03f8 100644 --- a/include/linux/futex.h +++ b/include/linux/futex.h @@ -149,10 +149,6 @@ union futex_key { int offset; } both; }; -int get_futex_key(u32 __user *uaddr, struct rw_semaphore *shared, - union futex_key *key); -void get_futex_key_refs(union futex_key *key); -void drop_futex_key_refs(union futex_key *key); #ifdef CONFIG_FUTEX extern void exit_robust_list(struct task_struct *curr); |