sync/atomic.Int32.Load (method)

7 uses

	sync/atomic (current package)
		type.go#L74: func (x *Int32) Load() int32 { return LoadInt32(&x.v) }

	sync
		rwmutex.go#L90: 		c := rw.readerCount.Load()
		rwmutex.go#L231: 	r := rw.readerCount.Load()

	crypto/tls
		conn.go#L1183: 		x := c.activeCall.Load()
		conn.go#L1403: 		x = c.activeCall.Load()

	go.uber.org/zap
		level.go#L118: 	return zapcore.Level(int8(lvl.l.Load()))

	log
		log.go#L323: 	return int(l.flag.Load())