Visual Studio 2010 Ultimate,查找 malloc() 和 free() 对

发布于 2024-10-22 01:47:59 字数 448 浏览 4 评论 0原文

我正在尝试将用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无所的.畏惧 2024-10-29 01:47:59

在 C 中,maloc() 保证返回出于任何目的而对齐的内存。

我认为您可以将所有 _aligned_malloc() 调用替换为 malloc() 调用。只需删除对齐参数...

#define _align_malloc(size, alignment) malloc(size) /* ignore alignment */

In C maloc() is guaranteed to return memory aligned for any purpose.

I think you can replace all _aligned_malloc() calls with malloc() ones. Just drop the alignment parameter ...

#define _align_malloc(size, alignment) malloc(size) /* ignore alignment */
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文