-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TestFastTagDuplicatesBug fails on 32bit platforms #10
Comments
TestMetricInterfaceOnGaugeAggregativeBuffered is also failing in a similar way
|
@davide125 : OK, it seems I should remove dependency on |
Not urgent at all. Thanks! |
Please be sure that all alignments is correct, for the correct case https://github.com/trafficstars/metrics/blob/master/iterators.go#L67 type iterationHandlersT struct {
sync.Mutex
m atomicmap.Map
routinesCount int64
//iterators []*metricIterator
} All atomic variable must be on the top in the order from bigger in size variables to smaller type iterationHandlersT struct {
sync.Mutex
routinesCount int64 // First all 64bits then 32bits and etc...
m atomicmap.Map
//iterators []*metricIterator
} It's also specific of ARM architecture CPUs. |
You can see the full log when building on i686 at https://koji.fedoraproject.org/koji/taskinfo?taskID=71314449 (look at build.log).
The text was updated successfully, but these errors were encountered: