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

@@ -102,8 +102,8 @@ type chainWatcherConfig struct {
// that the channel has been closed, and also give them the materials necessary
// to sweep the funds of the channel on chain eventually.
type chainWatcher struct {
started int32
stopped int32
started int32 // To be used atomically.
stopped int32 // To be used atomically.
quit chan struct{}
wg sync.WaitGroup