diff options
| author | Michael Kerrisk <mtk.manpages@gmail.com> | 2015-03-15 09:49:20 +0100 |
|---|---|---|
| committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2015-03-22 08:24:07 +0100 |
| commit | b6fe25f7228c7e92fe6473fc80026c78b81c0e64 (patch) | |
| tree | 8925045f3913a6e169463eea473099206559e7fa /man3/dlopen.3 | |
| parent | 99175a5826f5d42d8d8c7cf7834b7eb981d1ad82 (diff) | |
| download | man-pages-b6fe25f7228c7e92fe6473fc80026c78b81c0e64.tar.gz | |
dlopen.3: RTLD_NEXT works for symbols generally, not just functions
The common use case is for functions, but RTLD_NEXT
also applies to variable symbols.
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Diffstat (limited to 'man3/dlopen.3')
| -rw-r--r-- | man3/dlopen.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man3/dlopen.3 b/man3/dlopen.3 index 7cd8792faa..9d654625e6 100644 --- a/man3/dlopen.3 +++ b/man3/dlopen.3 @@ -275,7 +275,7 @@ as well as symbols in libraries that were dynamically loaded with the flag. .TP .BR RTLD_NEXT -Find the next occurrence of a function in the search order +Find the next occurrence of the desired symbol in the search order after the current library. This allows one to provide a wrapper around a function in another shared library, so that, for example, |
