Libc共享库如何加载到内存中并在进程之间共享?

发布于 2024-11-02 12:11:56 字数 123 浏览 1 评论 0原文

我想了解Libc共享库如何加载到内存中并在进程之间共享?是否有一个 libc 实例加载到内存中并在所有进程之间共享,或者是每个进程的内存中的每个 libc 实例。我不清楚 libc 如何在进程之间共享。

谢谢 阿迪亚

I want to understand how Libc shared library loaded in memory and shared amongst processes? Is there one libc instance loaded in memory and shared amongst all processes or is it each libc instance in memory for each process. I am unclear about how is libc shared between processes.

Thanks
Aditya

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

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

发布评论

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

评论(1

别想她 2024-11-09 12:11:56

libc 的一个实例在所有进程之间共享。请参阅"内部关于共享库和动态加载的故事” 文章:

具体来说,由于库主要由可执行指令组成,并且该代码通常不能自我修改,因此操作系统可以安排将库代码放置在进程之间共享的只读内存区域中(使用页面共享和其他虚拟内存技术) )。因此,如果数百个程序正在运行,并且每个程序都包含相同的库,则操作系统可以将库指令的单个共享副本加载到物理内存中。这可以减少内存使用并提高系统性能。

另请参阅“剖析共享库”一文。

The one instance of libc is shared among all the processes. See "The Inside Story On Shared Libraries And Dynamic Loading" article:

Specifically, because libraries mostly consist of executable instructions and this code is normally not self-modifying, the operating system can arrange to place library code in read-only memory regions shared among processes (using page-sharing and other virtual memory techniques). So, if hundreds of programs are running and each program includes the same library, the operating system can load a single shared copy of the library’s instructions into physical memory. This reduces memory use and improves system performance.

See also "Dissecting shared libraries" article.

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