History log of /openbsd-src/libexec/ld.so/Symbols.map (Results 1 – 4 of 4)
Revision Date Author Comments
# fe38b55c 07-May-2016 guenther <guenther@openbsd.org>

Use a Thread Information Block in both single and multi-threaded programs.
This stores errno, the cancelation flags, and related bits for each thread
and is allocated by ld.so or libc.a. This is an

Use a Thread Information Block in both single and multi-threaded programs.
This stores errno, the cancelation flags, and related bits for each thread
and is allocated by ld.so or libc.a. This is an ABI break from 5.9-stable!

Make libpthread dlopen'able by moving the cancelation wrappers into libc
and doing locking and fork/errno handling via callbacks that libpthread
registers when it first initializes. 'errno' *must* be declared via
<errno.h> now!

Clean up libpthread's symbol exports like libc.

On powerpc, offset the TIB/TCB/TLS data from the register per the ELF spec.

Testing by various, particularly sthen@ and patrick@
ok kettenis@

show more ...


# 11ee7b6e 21-Mar-2016 guenther <guenther@openbsd.org>

Provide _dlctl(), an alternate name for dlctl() that's in the reserved
namespace, for use by libpthread

ok deraadt@


# 702424ca 20-Mar-2016 guenther <guenther@openbsd.org>

Export environ and __progname, making the latter a copy of just the filename
portion like crt0 does. This is prep for eliminating _dl_fixup_user_env()
Mark almost everything in resolve.h as hidden,

Export environ and __progname, making the latter a copy of just the filename
portion like crt0 does. This is prep for eliminating _dl_fixup_user_env()
Mark almost everything in resolve.h as hidden, to improve code generation.

ok kettenis@ mpi@ "good time" deraadt@

show more ...


# f7a4210b 23-Aug-2015 guenther <guenther@openbsd.org>

Apply a symbol export list to ld.so with just the expected dl*() and the
two symbols needed by gdb. Remember: ld.so exports override those in
shared libs.

ok deraadt@