gpt4 book ai didi

c - 有没有办法找出一个进程中对动态库的引用数?

转载 作者:IT王子 更新时间:2023-10-29 00:39:30 31 4
gpt4 key购买 nike

有没有办法找出一个进程中对动态库的引用数?即在一个应用程序中,许多模块可能已经使用 dlopen 加载了相同的库,当一个模块执行 dlclose 时,我们能否知道该库是否真的被卸载或者它的引用只是被递减?

最佳答案

来自手册页:

dlclose()

The function dlclose() decrements the reference count on the dynamic library handle handle. If the reference count drops to zero and no other loaded libraries use symbols in it, then the dynamic library is unloaded.
The function dlclose() returns 0 on success, and nonzero on error.

所以引用计数是自动完成的,但是这个调用是最后一个并且确实卸载了库这一事实并没有被指出。如果需要,您需要数一数自己。

或者您可以在 dlclose 之后使用 RTLD_NOLOAD dlopen:

Don't  load  the  library.   This  can  be  used  to  test if the library is already resident  (dlopen() returns NULL if it is not, or the library's handle if it is resident).

(请注意,如果您获得引用,您将需要再次 dlclose() 它。这很有趣,因此请确保所有潜在的操作都发生在单个线程中或被序列化。)

您可能对 RTLD_NODELETE 选项感兴趣:

Do not unload the library during dlclose(). Consequently, the library's static variables are not reinitialized if the library is reloaded with dlopen() at a later time. This flag is not specified in POSIX.1-2001.

关于c - 有没有办法找出一个进程中对动态库的引用数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8033481/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com