Sign in
go
/
tools
/
00da4bb3ee57504ea82bc1e7085f0a26320a930d
/
.
/
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()