|
Back
Midas
Rome
Roody
Rootana
|
Midas DAQ System |
Not logged in |
|
|
|
Message ID: 408
Entry time: 08 Oct 2007
Reply to this: 409
|
Author: |
Carl Metelko |
Topic: |
Bug Report |
Subject: |
Error in data format- ending blocks on 32bit boundary x86_64 |
|
|
Hi,
I found that midas banks can be given an extra 32 bits of zeros when
trying to keep to 32bit boundary on my x86_64.
This can be fixed by changing (in midas.h)
#define ALIGN8(x) (((x)+7) & ~7)
to
#define ALIGN8(x) (((x)+3) & ~3)
Is there any bad consequences doing this? |