multi: 64bit aligment of atomic vars on arm/x86-32

This commit is contained in:
maurycy
2018-06-01 00:41:41 +02:00
committed by Olaoluwa Osuntokun
parent d2bcb708f3
commit 3be08e69cf
21 changed files with 67 additions and 60 deletions

View File

@@ -200,12 +200,12 @@ func newRouteTuple(amt lnwire.MilliSatoshi, dest []byte) routeTuple {
// automatically as new blocks are discovered which spend certain known funding
// outpoints, thereby closing their respective channels.
type ChannelRouter struct {
ntfnClientCounter uint64
ntfnClientCounter uint64 // To be used atomically.
started uint32
stopped uint32
started uint32 // To be used atomically.
stopped uint32 // To be used atomically.
bestHeight uint32
bestHeight uint32 // To be used atomically.
// cfg is a copy of the configuration struct that the ChannelRouter was
// initialized with.