about summary refs log tree commit diff
path: root/users/wpcarro/go/atomic-counters.go
blob: 6cbcd2ee4eaf67233f036905ae099965b969d9e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Attempting to apply some of the lessons I learned here:
// https://gobyexample.com/atomic-counters
package main

import (
	"fmt"
	"sync"
	"sync/atomic"
)

func main() {
	var count uint64
	var wg sync.WaitGroup

	for i := 0; i < 50; i += 1 {
		wg.Add(1)
		go func() {
			defer wg.Done()
			for j := 0; j < 1000; j += 1 {
				atomic.AddUint64(&count, 1)
			}
		}()
	}
	wg.Wait()
	fmt.Println("Count: ", count)
}