You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
246 B
Go
16 lines
246 B
Go
4 years ago
|
package syncx
|
||
|
|
||
|
import "sync/atomic"
|
||
|
|
||
|
type OnceGuard struct {
|
||
|
done uint32
|
||
|
}
|
||
|
|
||
|
func (og *OnceGuard) Taken() bool {
|
||
|
return atomic.LoadUint32(&og.done) == 1
|
||
|
}
|
||
|
|
||
|
func (og *OnceGuard) Take() bool {
|
||
|
return atomic.CompareAndSwapUint32(&og.done, 0, 1)
|
||
|
}
|