You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Tag:
Branch:
Tree:
972b94ffb9
fifteen
fourteen
tirimbino
urubino
urubino-ksu
${ noResults }
20 lines
334 B
20 lines
334 B
#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, int __user *uaddr);
|
|||
|
|||
static inline int
|
|||
futex_atomic_cmpxchg_inatomic(int __user *uaddr, int oldval, int newval)
|
|||
{
|
|||
return -ENOSYS;
|
|||
}
|
|||
|
|||
#endif
|
|||
#endif
|