예제 #1
0
파일: atomic.go 프로젝트: vozhyk-/gohan
//CounterValue makes thread safe counter
func CounterValue(counter *util.Counter) int {
	return int(counter.Value())
}
예제 #2
0
파일: atomic.go 프로젝트: vozhyk-/gohan
//CounterAdd makes thread safe counter
func CounterAdd(counter *util.Counter, value int) {
	counter.Add(int64(value))
}