Add powerpc64 to the list of architectures with real atomic operations.

Submitted by:	imp
This commit is contained in:
Nathan Whitehorn 2010-08-23 16:47:29 +00:00
parent ea246b6369
commit de563149f5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=211707

View File

@ -11,7 +11,7 @@
# LIST_SRCS
.PATH: ${.CURDIR}/../../../sys/cddl/contrib/opensolaris/uts/common/os
# ATOMIC_SRCS
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "ia64"
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "ia64" || ${MACHINE_ARCH} == "powerpc64"
.PATH: ${.CURDIR}/../../../sys/cddl/contrib/opensolaris/common/atomic/${MACHINE_ARCH}
ATOMIC_SRCS= opensolaris_atomic.S
.else