Consider the following (C11) code:
void *ptr = aligned_alloc(4096, 4096);
... // do something with 'ptr'
ptr = realloc(ptr, 6000);
Since the memory that ptr
points to has a 4096-byte alignment from aligned_alloc
, will it (read: is it guaranteed to) keep that alignment after a (successful) call to realloc
? Or could the memory revert to the default alignment?
realloc()
shall remember the alignment requirement of the original pointer, therefore the standard does not require that alignment requirements be preserved. – Hebraismposix_memalign
: #9078759 – Middlings