summaryrefslogtreecommitdiff
path: root/sys/compat
diff options
context:
space:
mode:
authorPaul Irofti <pirofti@cvs.openbsd.org>2012-11-19 15:03:56 +0000
committerPaul Irofti <pirofti@cvs.openbsd.org>2012-11-19 15:03:56 +0000
commitd6b26a98fcca45808b4798c6ea16a2341cf4f2a9 (patch)
treeadfa85939fdc33c28edbef7a62c76a077eea9358 /sys/compat
parent7424f1f9ce11363fa6ab90bab841b29c37767602 (diff)
Use a more descriptive name for the userland cas operation.
Substitute atomic_ucas_32 with futex_atomic_ucas_int32 to make it obvious who's using this api. Suggested by and okay kettenis@.
Diffstat (limited to 'sys/compat')
-rw-r--r--sys/compat/linux/linux_futex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_futex.c b/sys/compat/linux/linux_futex.c
index c8eb1cc8e2e..3edfa44dd72 100644
--- a/sys/compat/linux/linux_futex.c
+++ b/sys/compat/linux/linux_futex.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: linux_futex.c,v 1.9 2012/06/19 11:47:10 pirofti Exp $ */
+/* $OpenBSD: linux_futex.c,v 1.10 2012/11/19 15:03:55 pirofti Exp $ */
/* $NetBSD: linux_futex.c,v 1.26 2010/07/07 01:30:35 chs Exp $ */
/*-
@@ -634,7 +634,7 @@ futex_atomic_op(struct proc *p, int encoded_op, void *uaddr)
}
oldval = nval;
- error = atomic_ucas_32(uaddr, cval, nval);
+ error = futex_atomic_ucas_int32(uaddr, cval, nval);
if (oldval == cval || error) {
break;
}