Sign in
go
/
tools
/
480a22df0438d2da77e8528a068233caa9e752c2
/
.
/
go
/
ssa
/
testdata
/
src
/
sync
/
sync.go
blob: 8e6ff6893e964432e34eda7590f58eb5dc83b9ad [
file
]
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()