repo.or.cz
/
linux-2.6
/
linux-acpi-2.6
/
ibm-acpi-2.6.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ssb: Use pci_is_pcie()
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git]
/
arch
/
frv
/
include
/
asm
/
futex.h
blob
08b3d1da358398e111ccf01f50227ef8f60a7ffc
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