wireguard-go/misc.go

49 lines
692 B
Go
Raw Normal View History

/* SPDX-License-Identifier: GPL-2.0
*
2018-09-05 21:54:31 +00:00
* Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
*/
package main
2017-07-01 21:29:22 +00:00
import (
"sync/atomic"
2017-07-01 21:29:22 +00:00
)
2017-12-01 22:37:26 +00:00
/* Atomic Boolean */
2017-07-08 21:51:26 +00:00
const (
AtomicFalse = int32(iota)
2017-07-08 21:51:26 +00:00
AtomicTrue
)
type AtomicBool struct {
flag int32
}
func (a *AtomicBool) Get() bool {
return atomic.LoadInt32(&a.flag) == AtomicTrue
}
func (a *AtomicBool) Swap(val bool) bool {
flag := AtomicFalse
if val {
flag = AtomicTrue
}
return atomic.SwapInt32(&a.flag, flag) == AtomicTrue
}
func (a *AtomicBool) Set(val bool) {
flag := AtomicFalse
if val {
flag = AtomicTrue
}
atomic.StoreInt32(&a.flag, flag)
}
2018-05-13 22:28:30 +00:00
func min(a, b uint) uint {
if a > b {
return b
}
return a
}