Libc共享库如何加载到内存中并在进程之间共享?
我想了解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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
libc 的一个实例在所有进程之间共享。请参阅"内部关于共享库和动态加载的故事” 文章:
另请参阅“剖析共享库”一文。
The one instance of libc is shared among all the processes. See "The Inside Story On Shared Libraries And Dynamic Loading" article:
See also "Dissecting shared libraries" article.