<span style="font-size:12pt;font-family:"Times New Roman","serif"">Hi All,<br>
<br>
We are porting the application from 32-Bit to 64 Bit and OS is also 64-Bit .
All the processes are highly generating core dump because of align problem when
we go to 64 bit. <br>
<br>
We have run processes using GDB and found the below problem.<br>
<br>
Let's say the class<br>
class demo<br>
{<br>
private:<br>
int a;<br>
char *ptr;<br>
int b;<br>
};<br>
<br>
GDB shows the object size created is 16 bytes ( 16 bytes memory creation in
HEAP)while we go inside the class constructor, the size is shown of the
"This pointer" is 24 for this kind of class defined. We think that
the problem is due to alignment. <br>
<br>
The problem has gone away if we re-define the class as:<br>
class demo<br>
{<br>
private:<br>
char *ptr;<br>
int a;<br>
int b;<br>
};<br>
<br>
But we have many processes and there are lot of files. So it would be taking a
lot of time to manually fix it.<br>
Are we missing any compiler flag? OR how to fix it? We have been trying
find out since last two weeks? We don't know. <br>
<br>
<br>
Thanks<br>
Shashank <br>
Senior Developer </span>