wireguard-go/src/misc.go

87 lines
1.2 KiB
Go
Raw Normal View History

package main
2017-07-01 21:29:22 +00:00
import (
"sync/atomic"
2017-07-01 21:29:22 +00:00
"time"
)
2017-07-08 21:51:26 +00:00
/* We use int32 as atomic bools
* (since booleans are not natively supported by sync/atomic)
*/
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)
}
func toInt32(n uint32) int32 {
mask := uint32(1 << 31)
return int32(-(n & mask) + (n & ^mask))
}
func min(a uint, b uint) uint {
if a > b {
return b
}
return a
}
2017-07-10 10:09:19 +00:00
func minUint64(a uint64, b uint64) uint64 {
if a > b {
return b
}
return a
}
2017-07-08 21:51:26 +00:00
func signalSend(c chan struct{}) {
select {
case c <- struct{}{}:
default:
}
}
2017-07-01 21:29:22 +00:00
2017-07-08 21:51:26 +00:00
func signalClear(c chan struct{}) {
select {
case <-c:
default:
}
}
func timerStop(timer *time.Timer) {
2017-07-01 21:29:22 +00:00
if !timer.Stop() {
select {
case <-timer.C:
default:
}
}
}
2017-07-08 21:51:26 +00:00
func NewStoppedTimer() *time.Timer {
2017-07-01 21:29:22 +00:00
timer := time.NewTimer(time.Hour)
2017-07-08 21:51:26 +00:00
timerStop(timer)
2017-07-01 21:29:22 +00:00
return timer
}