Release 4.13 arch/frv/include/asm/futex.h
#ifndef _ASM_FUTEX_H
#define _ASM_FUTEX_H
#ifdef __KERNEL__
#include <linux/futex.h>
#include <asm/errno.h>
#include <linux/uaccess.h>
extern int futex_atomic_op_inuser(int encoded_op, 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 | 31 | 50.82% | 1 | 14.29% |
Ingo Molnar | 19 | 31.15% | 2 | 28.57% |
Michel Lespinasse | 8 | 13.11% | 2 | 28.57% |
David Howells | 2 | 3.28% | 1 | 14.29% |
Linus Torvalds | 1 | 1.64% | 1 | 14.29% |
Total | 61 | 100.00% | 7 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.