Visual Studio 2010 Ultimate,查找 malloc() 和 free() 对
我正在尝试将用 C 编写的 Linux 程序移植到 Windows。
在原始程序中,他们定义了一个分配对齐内存的小函数。如果他们想释放它,他们只需调用free()
。我使用_aligned_malloc()
来分配,但是当我想释放它时,我还需要使用_aligned_free()
。但我必须找到与对齐分配相对应的函数 free()
的所有调用。并非所有分配都是对齐的,因此我不能简单地将所有 free()
替换为 _aligned_free()
。
我的问题是:Visual Studio 中是否有任何工具可以找到 malloc()
/ free()
对?
有什么建议吗?
我也是 Visual Studio 的新手。
I am trying to port a Linux program written in C to Windows.
In the original program, they defined a small function which allocates aligned memory. If they want to free it, they just call free()
. I used _aligned_malloc()
to allocate but when I want to free it, I also need to use _aligned_free()
. But I have to find all the calls of the function free()
which correspond to the aligned allocations. Not all of the allocations are aligned, so I cannot simply replace all the free()
's with _aligned_free()
.
My question is: is there any tool in Visual Studio which can find the malloc()
/ free()
pairs?
Any advice?
I am also new to Visual Studio.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 C 中,
maloc()
保证返回出于任何目的而对齐的内存。我认为您可以将所有
_aligned_malloc()
调用替换为malloc()
调用。只需删除对齐参数...In C
maloc()
is guaranteed to return memory aligned for any purpose.I think you can replace all
_aligned_malloc()
calls withmalloc()
ones. Just drop the alignment parameter ...