Go Mutex 流程
mutex 流程
type Mutex struct {
state int32
sema uint32
}
等效于
type Mutex struct {
locked uint
woken uint
starving uint
waiterCount uint
sema uint32
}

type Mutex struct {
state int32
sema uint32
}
等效于
type Mutex struct {
locked uint
woken uint
starving uint
waiterCount uint
sema uint32
}
