dlopen() — Gain access to a dynamic link library
www.ibm.com › docs › enIf the value of file is NULL, dlopen () returns a "global symbol object" handle. This object provides access (via dlsym ()) to the symbols exported from: The main application and dependent DLLs for the main application that were loaded at program start-up, and The set of DLLs loaded using dlopen () with the RTLD_GLOBAL flag.
dlopen() — Gain access to a dynamic link library
www.ibm.com › com › dlopenIf the value of file is NULL, dlopen () returns a "global symbol object" handle . This object will provide access (via dlsym ()) to the symbols exported from: The main application, and dependent DLLs for the main application that were loaded at program start-up, and The set of DLLs loaded using dlopen () with the RTLD_GLOBAL flag.
高手前辈们 dlopen(NULL,RTLD_NOW);帮帮忙 看下啊-CSDN社区
https://bbs.csdn.net/topics/33011635725.02.2010 · The dlopen () function shall make an executable object file specified by file available to the calling program. The class of files eligible for this operation and the manner of their construction are implementation-defined, though typically such files are executable objects such as shared libraries, relocatable files, or programs.
dlopen(3) - Linux manual page - Michael Kerrisk
man7.org › linux › man-pagesdlopen () The function dlopen () loads the dynamic shared object (shared library) file named by the null-terminated string filename and returns an opaque "handle" for the loaded object. This handle is employed with other functions in the dlopen API, such as dlsym (3), dladdr (3), dlinfo (3), and dlclose ().
dlopen
https://pubs.opengroup.org › dlopenIf file is a null pointer, dlopen() shall return a global symbol table handle for the currently running process image. ... As the latter set of executable object ...