k3s/vendor/go.uber.org/atomic
Brad Davidson e204d863a5 Update Kubernetes to v1.22.1
* Update Kubernetes to v1.22.1
* Update dependent modules to track with upstream

Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
2021-08-20 18:47:16 -07:00
..
.codecov.yml Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
.gitignore Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
.travis.yml Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
bool_ext.go Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
bool.go Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
CHANGELOG.md Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
doc.go Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
duration_ext.go Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
duration.go Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
error_ext.go Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
error.go Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
float64_ext.go Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
float64.go Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
gen.go Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
go.mod Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
go.sum Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
int32.go Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
int64.go Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
LICENSE.txt Update vendor 2019-09-27 16:54:32 -07:00
Makefile Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
nocmp.go Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
README.md Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
string_ext.go Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
string.go Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
uint32.go Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
uint64.go Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00
value.go Update Kubernetes to v1.22.1 2021-08-20 18:47:16 -07:00

atomic GoDoc Build Status Coverage Status Go Report Card

Simple wrappers for primitive types to enforce atomic access.

Installation

$ go get -u go.uber.org/atomic@v1

Legacy Import Path

As of v1.5.0, the import path go.uber.org/atomic is the only supported way of using this package. If you are using Go modules, this package will fail to compile with the legacy import path path github.com/uber-go/atomic.

We recommend migrating your code to the new import path but if you're unable to do so, or if your dependencies are still using the old import path, you will have to add a replace directive to your go.mod file downgrading the legacy import path to an older version.

replace github.com/uber-go/atomic => github.com/uber-go/atomic v1.4.0

You can do so automatically by running the following command.

$ go mod edit -replace github.com/uber-go/atomic=github.com/uber-go/atomic@v1.4.0

Usage

The standard library's sync/atomic is powerful, but it's easy to forget which variables must be accessed atomically. go.uber.org/atomic preserves all the functionality of the standard library, but wraps the primitive types to provide a safer, more convenient API.

var atom atomic.Uint32
atom.Store(42)
atom.Sub(2)
atom.CAS(40, 11)

See the documentation for a complete API specification.

Development Status

Stable.


Released under the MIT License.