Suse 中的 Malloc/free 算法

发布于 2024-08-08 06:15:34 字数 117 浏览 4 评论 0原文

特定 Linux 发行版(在我的例子中是 Suse 9 和 Suse 10)中使用了哪种 malloc/free 实现?

两个版本之间有变化吗?

32 位和 64 位版本的算法是否相同?

Which implementation of malloc/free is used in a specific Linux distribution (in my case Suse 9 and Suse 10) ?

Has it change between both versions ?

Is it the same algorithm for 32 bits and 64 bits versions ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

关于从前 2024-08-15 06:15:34

mallocfree 是在 C 库中实现的,而不是在操作系统本身中实现的。如果你找出你有什么C库,你就可以知道这一点。我不知道 Suse,但大多数 Linux 都会使用 glibc(C 标准库的 GNU 版本)。

malloc and free are implemented in the C library rather than the operating system itself. If you find out what C library you have, you can know this. I don't know Suse but most linuxes will be using glibc (the GNU version of the C standard library).

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