Files
wireguard-go/misc.go
T

63 lines
926 B
Go
Raw Normal View History

2018-05-03 15:04:00 +02:00
/* SPDX-License-Identifier: GPL-2.0
*
* Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
*/
2017-05-30 22:36:49 +02:00
package main
2017-07-01 23:29:22 +02:00
import (
2017-08-11 16:18:20 +02:00
"sync/atomic"
2017-07-01 23:29:22 +02:00
)
2017-12-01 23:37:26 +01:00
/* Atomic Boolean */
2017-07-08 23:51:26 +02:00
const (
2017-08-11 16:18:20 +02:00
AtomicFalse = int32(iota)
2017-07-08 23:51:26 +02:00
AtomicTrue
)
2017-08-11 16:18:20 +02:00
type AtomicBool struct {
flag int32
}
func (a *AtomicBool) Get() bool {
return atomic.LoadInt32(&a.flag) == AtomicTrue
}
2017-11-17 17:25:45 +01:00
func (a *AtomicBool) Swap(val bool) bool {
flag := AtomicFalse
if val {
flag = AtomicTrue
}
return atomic.SwapInt32(&a.flag, flag) == AtomicTrue
}
2017-08-11 16:18:20 +02:00
func (a *AtomicBool) Set(val bool) {
flag := AtomicFalse
if val {
flag = AtomicTrue
}
atomic.StoreInt32(&a.flag, flag)
}
2017-12-01 23:37:26 +01:00
/* Integer manipulation */
func toInt32(n uint32) int32 {
mask := uint32(1 << 31)
return int32(-(n & mask) + (n & ^mask))
}
2018-05-14 00:28:30 +02:00
func min(a, b uint) uint {
2017-05-30 22:36:49 +02:00
if a > b {
return b
}
return a
}
2017-06-30 14:41:08 +02:00
2017-07-10 12:09:19 +02:00
func minUint64(a uint64, b uint64) uint64 {
if a > b {
return b
}
return a
}