Blame view

kernel/linux-rt-4.4.41/arch/frv/include/asm/futex.h 354 Bytes
5113f6f70   김현기   kernel add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  #ifndef _ASM_FUTEX_H
  #define _ASM_FUTEX_H
  
  #ifdef __KERNEL__
  
  #include <linux/futex.h>
  #include <asm/errno.h>
  #include <asm/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;
  }
  
  #endif
  #endif