sync.WaitGroup.Add (method)

18 uses

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

	encoding/json
		encode.go#L357: 	wg.Add(1)

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

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

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

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

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

	net
		dnsclient_unix.go#L644: 			dnsWaitGroup.Add(1)
		dnsclient_unix.go#L651: 			dnsWaitGroup.Add(1)
		lookup.go#L322: 	dnsWaitGroup.Add(1)

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

	nhooyr.io/websocket
		conn.go#L134: 	c.wg.Add(1)
		conn.go#L169: 	c.wg.Add(1)
		conn.go#L191: 			c.wg.Add(1)
		read.go#L66: 	c.wg.Add(1)