1
0
Fork 0
forked from External/ergo

store maxSendQBytes in a uint32 to avoid alignment problems

The sync.atomic documentation says:

"On both ARM and x86-32, it is the caller's responsibility to arrange
for 64-bit alignment of 64-bit words accessed atomically."
This commit is contained in:
Shivaram Lingamneni 2018-03-19 00:24:20 -04:00
parent d1f5c59eef
commit a8b952da77
2 changed files with 3 additions and 3 deletions

View file

@ -109,7 +109,7 @@ type Server struct {
limits Limits
listeners map[string]*ListenerWrapper
logger *logger.Manager
maxSendQBytes uint64
maxSendQBytes uint32
monitorManager *MonitorManager
motdLines []string
name string