Module unix

Source
Expand description

UNIX implementation of dynamic library loading.

Modulesยง

consts ๐Ÿ”’
unix_imports ๐Ÿ”’

Structsยง

DlInfo ๐Ÿ”’
Library
A platform-specific counterpart of the cross-platform Library.
Symbol
Symbol from a library.

Constantsยง

RTLD_GLOBAL
Make loaded symbols available for resolution globally.
RTLD_LAZY
Perform lazy binding.
RTLD_LOCAL
Load symbols into an isolated namespace.
RTLD_NOW
Perform eager binding.

Functionsยง

dladdr ๐Ÿ”’ โš 
dlclose ๐Ÿ”’ โš 
dlerror ๐Ÿ”’ โš 
dlopen ๐Ÿ”’ โš 
dlsym ๐Ÿ”’ โš 
with_dlerror
Run code and handle errors reported by dlerror.