summaryrefslogtreecommitdiffstats
path: root/vendor/go.uber.org/atomic/uintptr.go
diff options
context:
space:
mode:
authorzeripath <art27@cantab.net>2021-08-23 23:07:40 +0100
committerGitHub <noreply@github.com>2021-08-23 18:07:40 -0400
commit1cd4a3b963946d27620c48eb968dc81e5af432af (patch)
treef8744b95a3b96e29f6fc0ac711288f39e4760cbd /vendor/go.uber.org/atomic/uintptr.go
parentf31e7a67cfc9662af2ae2dab3f4687457545f60c (diff)
downloadgitea-1cd4a3b963946d27620c48eb968dc81e5af432af.tar.gz
gitea-1cd4a3b963946d27620c48eb968dc81e5af432af.zip
Update caddyserver/certmagic (#16789)
Fixes issue with windows users & letsencrypt Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'vendor/go.uber.org/atomic/uintptr.go')
-rw-r--r--vendor/go.uber.org/atomic/uintptr.go22
1 files changed, 11 insertions, 11 deletions
diff --git a/vendor/go.uber.org/atomic/uintptr.go b/vendor/go.uber.org/atomic/uintptr.go
index 6b363ada35..ecf7a77273 100644
--- a/vendor/go.uber.org/atomic/uintptr.go
+++ b/vendor/go.uber.org/atomic/uintptr.go
@@ -36,8 +36,8 @@ type Uintptr struct {
}
// NewUintptr creates a new Uintptr.
-func NewUintptr(i uintptr) *Uintptr {
- return &Uintptr{v: i}
+func NewUintptr(val uintptr) *Uintptr {
+ return &Uintptr{v: val}
}
// Load atomically loads the wrapped value.
@@ -46,13 +46,13 @@ func (i *Uintptr) Load() uintptr {
}
// Add atomically adds to the wrapped uintptr and returns the new value.
-func (i *Uintptr) Add(n uintptr) uintptr {
- return atomic.AddUintptr(&i.v, n)
+func (i *Uintptr) Add(delta uintptr) uintptr {
+ return atomic.AddUintptr(&i.v, delta)
}
// Sub atomically subtracts from the wrapped uintptr and returns the new value.
-func (i *Uintptr) Sub(n uintptr) uintptr {
- return atomic.AddUintptr(&i.v, ^(n - 1))
+func (i *Uintptr) Sub(delta uintptr) uintptr {
+ return atomic.AddUintptr(&i.v, ^(delta - 1))
}
// Inc atomically increments the wrapped uintptr and returns the new value.
@@ -66,18 +66,18 @@ func (i *Uintptr) Dec() uintptr {
}
// CAS is an atomic compare-and-swap.
-func (i *Uintptr) CAS(old, new uintptr) bool {
+func (i *Uintptr) CAS(old, new uintptr) (swapped bool) {
return atomic.CompareAndSwapUintptr(&i.v, old, new)
}
// Store atomically stores the passed value.
-func (i *Uintptr) Store(n uintptr) {
- atomic.StoreUintptr(&i.v, n)
+func (i *Uintptr) Store(val uintptr) {
+ atomic.StoreUintptr(&i.v, val)
}
// Swap atomically swaps the wrapped uintptr and returns the old value.
-func (i *Uintptr) Swap(n uintptr) uintptr {
- return atomic.SwapUintptr(&i.v, n)
+func (i *Uintptr) Swap(val uintptr) (old uintptr) {
+ return atomic.SwapUintptr(&i.v, val)
}
// MarshalJSON encodes the wrapped uintptr into JSON.