Sign in
go
/
tools
/
f6ea009c5f495984cd59a7db8271d5c46dd36137
/
.
/
go
/
ssa
/
testdata
/
src
/
sync
/
sync.go
blob: 8e6ff6893e964432e34eda7590f58eb5dc83b9ad [
file
] [
log
] [
blame
]
package sync
type Mutex struct{}
func (m *Mutex) Lock()
func (m *Mutex) Unlock()
type WaitGroup struct{}
func (wg *WaitGroup) Add(delta int)
func (wg *WaitGroup) Done()
func (wg *WaitGroup) Wait()