Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 24318
b: refs/heads/master
c: e9056f1
h: refs/heads/master
v: v3
  • Loading branch information
Ingo Molnar authored and Linus Torvalds committed Mar 27, 2006
1 parent 5684bc6 commit 58caa75
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 62ac285f3c701f0457a15fe01baa64a965c4f5f1
refs/heads/master: e9056f13bfcdd054a0c3d730e4e096748d8a363a
6 changes: 6 additions & 0 deletions trunk/include/asm-frv/futex.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,11 @@

extern int futex_atomic_op_inuser(int encoded_op, int __user *uaddr);

static inline int
futex_atomic_cmpxchg_inuser(int __user *uaddr, int oldval, int newval)
{
return -ENOSYS;
}

#endif
#endif
6 changes: 6 additions & 0 deletions trunk/include/asm-generic/futex.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,11 @@ futex_atomic_op_inuser (int encoded_op, int __user *uaddr)
return ret;
}

static inline int
futex_atomic_cmpxchg_inuser(int __user *uaddr, int oldval, int newval)
{
return -ENOSYS;
}

#endif
#endif
6 changes: 6 additions & 0 deletions trunk/include/asm-i386/futex.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,5 +104,11 @@ futex_atomic_op_inuser (int encoded_op, int __user *uaddr)
return ret;
}

static inline int
futex_atomic_cmpxchg_inuser(int __user *uaddr, int oldval, int newval)
{
return -ENOSYS;
}

#endif
#endif
6 changes: 6 additions & 0 deletions trunk/include/asm-mips/futex.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,5 +99,11 @@ futex_atomic_op_inuser (int encoded_op, int __user *uaddr)
return ret;
}

static inline int
futex_atomic_cmpxchg_inuser(int __user *uaddr, int oldval, int newval)
{
return -ENOSYS;
}

#endif
#endif
6 changes: 6 additions & 0 deletions trunk/include/asm-powerpc/futex.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,11 @@ static inline int futex_atomic_op_inuser (int encoded_op, int __user *uaddr)
return ret;
}

static inline int
futex_atomic_cmpxchg_inuser(int __user *uaddr, int oldval, int newval)
{
return -ENOSYS;
}

#endif /* __KERNEL__ */
#endif /* _ASM_POWERPC_FUTEX_H */
6 changes: 6 additions & 0 deletions trunk/include/asm-sparc64/futex.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,10 @@ static inline int futex_atomic_op_inuser(int encoded_op, int __user *uaddr)
return ret;
}

static inline int
futex_atomic_cmpxchg_inuser(int __user *uaddr, int oldval, int newval)
{
return -ENOSYS;
}

#endif /* !(_SPARC64_FUTEX_H) */
6 changes: 6 additions & 0 deletions trunk/include/asm-x86_64/futex.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,5 +94,11 @@ futex_atomic_op_inuser (int encoded_op, int __user *uaddr)
return ret;
}

static inline int
futex_atomic_cmpxchg_inuser(int __user *uaddr, int oldval, int newval)
{
return -ENOSYS;
}

#endif
#endif

0 comments on commit 58caa75

Please sign in to comment.