svn commit: r327053 - head/sys/sparc64/include
Marius Strobl
marius at FreeBSD.org
Thu Dec 21 01:27:34 UTC 2017
Author: marius
Date: Thu Dec 21 01:27:32 2017
New Revision: 327053
URL: https://svnweb.freebsd.org/changeset/base/327053
Log:
Remove MD atomic_load_{32,64,int,long,ptr}(9) obsolete since the addition
of (conflicting) MI ones in r326971.
Modified:
head/sys/sparc64/include/atomic.h
Modified: head/sys/sparc64/include/atomic.h
==============================================================================
--- head/sys/sparc64/include/atomic.h Thu Dec 21 01:22:36 2017 (r327052)
+++ head/sys/sparc64/include/atomic.h Thu Dec 21 01:27:32 2017 (r327053)
@@ -258,11 +258,6 @@ atomic_fcmpset_rel_ ## name(volatile ptype p, vtype *e
} \
\
static __inline vtype \
-atomic_load_ ## name(volatile ptype p) \
-{ \
- return ((vtype)atomic_cas((p), 0, 0, sz)); \
-} \
-static __inline vtype \
atomic_load_acq_ ## name(volatile ptype p) \
{ \
return ((vtype)atomic_cas_acq((p), 0, 0, sz)); \
More information about the svn-src-all
mailing list