diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-10-10 19:50:41 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-10-10 19:50:41 +0000 |
commit | 0e0abd3b24d23dbb16a357abdd2c64f63235784e (patch) | |
tree | 10df665077f474e0ead91c6ca6b4e52eb4017dd1 /pkg/atomicbitops/atomic_bitops.go | |
parent | 839cdd4205fdf468f4c5ad8185719affb114ecc9 (diff) | |
parent | 14952d01fb5fa03a40dbb241b4c12f5a400a3577 (diff) |
Merge release-20190806.1-258-g14952d0 (automated)
Diffstat (limited to 'pkg/atomicbitops/atomic_bitops.go')
-rw-r--r-- | pkg/atomicbitops/atomic_bitops.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pkg/atomicbitops/atomic_bitops.go b/pkg/atomicbitops/atomic_bitops.go index 63aa2b7f1..fcc41a9ea 100644 --- a/pkg/atomicbitops/atomic_bitops.go +++ b/pkg/atomicbitops/atomic_bitops.go @@ -12,11 +12,12 @@ // See the License for the specific language governing permissions and // limitations under the License. -// +build amd64 +// +build amd64 arm64 // Package atomicbitops provides basic bitwise operations in an atomic way. // The implementation on amd64 leverages the LOCK prefix directly instead of -// relying on the generic cas primitives. +// relying on the generic cas primitives, and the arm64 leverages the LDAXR +// and STLXR pair primitives. // // WARNING: the bitwise ops provided in this package doesn't imply any memory // ordering. Using them to construct locks must employ proper memory barriers. |