sync.WaitGroup.Add (method)

21 uses

	sync (current package)
		waitgroup.go#L77: func (wg *WaitGroup) Add(delta int) {
		waitgroup.go#L156: 	wg.Add(-1)
		waitgroup.go#L237: 	wg.Add(1)

	github.com/gotd/td/mtproto
		read.go#L202: 		handlers.Add(1)

	github.com/gotd/td/rpc
		engine.go#L87: 	e.wg.Add(1)

	github.com/gotd/td/tdsync
		supervisor.go#L40: 	s.wg.Add(1)

	github.com/klauspost/compress/huff0
		compress.go#L314: 	wg.Add(4)

	github.com/klauspost/compress/zstd
		decoder.go#L230: 	d.streamWg.Add(1)
		decoder.go#L714: 	wg.Add(1)
		encoder.go#L317: 	s.wg.Add(1)
		encoder.go#L347: 		s.wWg.Add(1)

	golang.org/x/sync/errgroup
		errgroup.go#L77: 	g.wg.Add(1)
		errgroup.go#L118: 	g.wg.Add(1)

	golang.org/x/sync/singleflight
		singleflight.go#L109: 	c.wg.Add(1)
		singleflight.go#L134: 	c.wg.Add(1)

	internal/singleflight
		singleflight.go#L59: 	c.wg.Add(1)
		singleflight.go#L82: 	c.wg.Add(1)

	net
		dnsclient_unix.go#L658: 			dnsWaitGroup.Add(1)
		dnsclient_unix.go#L665: 			dnsWaitGroup.Add(1)
		lookup.go#L333: 	dnsWaitGroup.Add(1)

	net/http
		server.go#L3586: 		s.listenerGroup.Add(1)