Developer Dave thinks locking twice makes his code twice as safe, what do you think?
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
27
28
29
30
31
32
33
34
35
|
package main
import (
"fmt"
"sync"
)
var mut sync.RWMutex
func main() {
go func() {
for {
mut.RLock()
protectedRead()
mut.RUnlock()
}
}()
for {
protectedWrite()
}
}
func protectedRead() {
mut.RLock()
defer mut.RUnlock()
fmt.Println("👀")
}
func protectedWrite() {
mut.Lock()
defer mut.Unlock()
fmt.Println("😒")
}
|