How to allocate and free aligned memory in C
问题 How do you allocate memory that's aligned to a specific boundary in C (e.g., cache line boundary)? I'm looking for malloc/free like implementation that ideally would be as portable as possible --- at least between 32 and 64 bit architectures. Edit to add: In other words, I'm looking for something that would behave like (the now obsolete?) memalign function, which can be freed using free. 回答1: Here is a solution, which encapsulates the call to malloc, allocates a bigger buffer for alignment