dl_iterate_phdr.3: dl_iterate_phdr() shows the order in which objects were loaded

dl_iterate_phdr() tells us not just which objects are
loaded, but also the order in which they are loaded
(the "link-map order"). Since the order is relevant for
understanding symbol resolution, give the reader this clue.

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2017-05-12 13:40:41 +02:00
parent 91a2771d06
commit 797981eb03
1 changed files with 2 additions and 1 deletions

View File

@ -39,7 +39,8 @@ dl_iterate_phdr \- walk through list of shared objects
The
.BR dl_iterate_phdr ()
function allows an application to inquire at run time to find
out which shared objects it has loaded.
out which shared objects it has loaded,
and the order in which they were loaded.
The
.BR dl_iterate_phdr ()