mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
7e395bbbd4
This allows for external information to be passed to restore code.
Similar to c087777e37 ("Plumb restore context to afterLoad()").
Updates #1956.
PiperOrigin-RevId: 614125262
56 lines
1.5 KiB
Go
56 lines
1.5 KiB
Go
// Copyright 2019 The gVisor Authors.
|
|
//
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Package seqatomic doesn't exist. This file must be instantiated using the
|
|
// go_template_instance rule in tools/go_generics/defs.bzl.
|
|
package seqatomic
|
|
|
|
import (
|
|
"context"
|
|
"sync/atomic"
|
|
"unsafe"
|
|
)
|
|
|
|
// Value is a required type parameter.
|
|
type Value struct{}
|
|
|
|
// An AtomicPtr is a pointer to a value of type Value that can be atomically
|
|
// loaded and stored. The zero value of an AtomicPtr represents nil.
|
|
//
|
|
// Note that copying AtomicPtr by value performs a non-atomic read of the
|
|
// stored pointer, which is unsafe if Store() can be called concurrently; in
|
|
// this case, do `dst.Store(src.Load())` instead.
|
|
//
|
|
// +stateify savable
|
|
type AtomicPtr struct {
|
|
ptr unsafe.Pointer `state:".(*Value)"`
|
|
}
|
|
|
|
func (p *AtomicPtr) savePtr() *Value {
|
|
return p.Load()
|
|
}
|
|
|
|
func (p *AtomicPtr) loadPtr(_ context.Context, v *Value) {
|
|
p.Store(v)
|
|
}
|
|
|
|
// Load returns the value set by the most recent Store. It returns nil if there
|
|
// has been no previous call to Store.
|
|
//
|
|
//go:nosplit
|
|
func (p *AtomicPtr) Load() *Value {
|
|
return (*Value)(atomic.LoadPointer(&p.ptr))
|
|
}
|
|
|
|
// Store sets the value returned by Load to x.
|
|
func (p *AtomicPtr) Store(x *Value) {
|
|
atomic.StorePointer(&p.ptr, (unsafe.Pointer)(x))
|
|
}
|
|
|
|
// Swap atomically stores `x` into *p and returns the previous *p value.
|
|
func (p *AtomicPtr) Swap(x *Value) *Value {
|
|
return (*Value)(atomic.SwapPointer(&p.ptr, (unsafe.Pointer)(x)))
|
|
}
|