This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Problem with malloc on PA



The PA-RISC architecture requires a lock to be 16-byte aligned.  So we
add __attribute__((aligned (16))) to our lock type and that aligns it
to a 16-byte offset within the struct.  But if the struct isn't 16-byte
aligned, this loses.

malloc() currently returns pointers which are 8-byte aligned.  Would it
be possible to change it so that they're 16-byte aligned?  I took a quick
look at the code, and I saw MALLOC_ALIGN_MASK, but I'm not sure exactly
what effects simply changing this would have.  I suspect I would want
to change MALLOC_ALIGNMENT as well, but not SIZE_SZ?

help greatly appreciated.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]