1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 04:25:07 +00:00
serenity/Userland/Libraries/LibDl
Gunnar Beutner f40ee1b03f LibC+LibELF: Implement more fully-features dlfcn functionality
This implements more of the dlfcn functionality. Most notably:

* It's now possible to dlopen() libraries which were already
  loaded at program startup time. This does not cause those
  libraries to be loaded twice.
* Errors are reported via dlerror() rather than by crashing
  the program.
* Calls to the dl*() functions are thread-safe.
2021-04-25 10:14:50 +02:00
..
CMakeLists.txt LibC+LibELF: Implement more fully-features dlfcn functionality 2021-04-25 10:14:50 +02:00
dlfcn.cpp LibC+LibELF: Implement more fully-features dlfcn functionality 2021-04-25 10:14:50 +02:00
dlfcn.h LibC+LibELF: Implement more fully-features dlfcn functionality 2021-04-25 10:14:50 +02:00
dlfcn_integration.h LibC+LibELF: Implement more fully-features dlfcn functionality 2021-04-25 10:14:50 +02:00