History log of /seL4-refos-master/libs/libmuslc/src/ldso/dladdr.c
Revision Date Author Comments
# 4f8f0380 25-Jan-2016 Rich Felker <dalias@aerifal.cx>

move static/stub version of dladdr out of dynlink.c


# 839cc4e6 06-Jan-2014 Rich Felker <dalias@aerifal.cx>

const-qualify the address argument to dladdr

this agrees with implementation practice on glibc and BSD systems, and
is the const-correct way to do things; it eliminates warnings from
passing pointers to const. the prototype without const came from
seemingly erroneous man pages.


# f419bcb9 26-Aug-2012 Rich Felker <dalias@aerifal.cx>

dladdr support for dynamic linker (nonstandard extension)

based on patches submitted by boris brezillon. this commit also fixes
the issue whereby the main application and libc don't have the address
ranges of their mappings stored, which was theoretically a problem for
RTLD_NEXT support in dlsym; it didn't actually matter because libc
never calls dlsym, and it seemed to be doing the right thing (by
chance) for symbols in the main program as well.