Release 4.14 arch/frv/include/asm/futex.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_FUTEX_H
#define _ASM_FUTEX_H
#ifdef __KERNEL__
#include <linux/futex.h>
#include <asm/errno.h>
#include <linux/uaccess.h>
extern int arch_futex_atomic_op_inuser(int op, int oparg, int *oval,
u32 __user *uaddr);
static inline int
futex_atomic_cmpxchg_inatomic(u32 *uval, u32 __user *uaddr,
u32 oldval, u32 newval)
{
return -ENOSYS;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ingo Molnar | 19 | 73.08% | 2 | 50.00% |
Michel Lespinasse | 7 | 26.92% | 2 | 50.00% |
Total | 26 | 100.00% | 4 | 100.00% |
#endif
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jakub Jelínek | 29 | 42.03% | 1 | 11.11% |
Ingo Molnar | 19 | 27.54% | 2 | 22.22% |
Jiri Slaby | 9 | 13.04% | 1 | 11.11% |
Michel Lespinasse | 8 | 11.59% | 2 | 22.22% |
David Howells | 2 | 2.90% | 1 | 11.11% |
Linus Torvalds | 1 | 1.45% | 1 | 11.11% |
Greg Kroah-Hartman | 1 | 1.45% | 1 | 11.11% |
Total | 69 | 100.00% | 9 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.