home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / src / linux-headers-2.6.17-6 / include / asm-frv / futex.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-08-11  |  334 b   |  20 lines

  1. #ifndef _ASM_FUTEX_H
  2. #define _ASM_FUTEX_H
  3.  
  4. #ifdef __KERNEL__
  5.  
  6. #include <linux/futex.h>
  7. #include <asm/errno.h>
  8. #include <asm/uaccess.h>
  9.  
  10. extern int futex_atomic_op_inuser(int encoded_op, int __user *uaddr);
  11.  
  12. static inline int
  13. futex_atomic_cmpxchg_inatomic(int __user *uaddr, int oldval, int newval)
  14. {
  15.     return -ENOSYS;
  16. }
  17.  
  18. #endif
  19. #endif
  20.