[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Alignment of objects returned by malloc() and operator new()
- Date: Fri, 07 Dec 2007 15:52:00 -0500
- From: rsg at alum.mit.edu (Robert S. Grimes)
- Subject: Alignment of objects returned by malloc() and operator new()
Chris Johns wrote:
> Robert S. Grimes wrote:
>
>> Quick questions
>>
>> 1. What are the alignment characteristics of memory returned by malloc()?
>>
>> 2. What about operator new()?
>>
>> I need to allocate memory for the Partition Manager, which wants it
>> allocated on a 4-byte boundary - need I do anything special?
>>
>>
>
> The most portable way is to allocate 4 bytes more and then move the start address.
>
> Regards
> Chris
>
Okay, that's what I did - just wondering if that is necessary. Seeing
your response reflects the silliness of the original question!