如何在C中分配和释放对齐内存
如何分配与 C 中的特定边界(例如缓存行边界)对齐的内存?我正在寻找类似 malloc/free 的实现,理想情况下应尽可能可移植——至少在 32 位和 64 位架构之间。
编辑添加:换句话说,我正在寻找一些行为类似于(现在已过时?) memalign功能,可以使用free释放。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这里有一个解决方案,它封装了对 malloc 的调用,分配一个更大的缓冲区用于对齐目的,并将原始分配的地址存储在对齐缓冲区之前,以便稍后调用 free。
Here is a solution, which encapsulates the call to malloc, allocates a bigger buffer for alignment purpose, and stores the original allocated address just before the aligned buffer for a later call to free.
使用
posix_memalign
/免费
。posix_memalign
是memalign
的标准替代品,正如您提到的那样,它已经过时了。Use
posix_memalign
/free
.posix_memalign
is a standard replacement formemalign
which, as you mention is obsolete.你使用什么编译器?如果您使用的是 MSVC,则可以尝试
_aligned_malloc()
和_aligned_free()
。What compiler are you using? If you're on MSVC, you can try
_aligned_malloc()
and_aligned_free()
.