freebsd-dev/contrib/jemalloc
Konstantin Belousov 8495e8b1e9 Fix known issues which blow up the process after dlopen("libthr.so")
(or loading a dso linked to libthr.so into process which was not
linked against threading library).

- Remove libthr interposers of the libc functions, including
  __error(). Instead, functions calls are indirected through the
  interposing table, similar to how pthread stubs in libc are already
  done.  Libc by default points either to syscall trampolines or to
  existing libc implementations.  On libthr load, libthr rewrites the
  pointers to the cancellable implementations already in libthr.  The
  interposition table is separate from pthreads stubs indirection
  table to not pull pthreads stubs into static binaries.

- Postpone the malloc(3) internal mutexes initialization until libthr
  is loaded.  This avoids recursion between calloc(3) and static
  pthread_mutex_t initialization.

- Reinstall signal handlers with wrapper on libthr load.  The
  _rtld_is_dlopened(3) is used to avoid useless calls to sigaction(2)
  when libthr is statically referenced from the main binary.

In the process, fix openat(2), swapcontext(2) and setcontext(2)
interposing.  The libc symbols were exported at different versions
than libthr interposers.  Export both libc and libthr versions from
libc now, with default set to the higher version from libthr.

Remove unused and disconnected swapcontext(3) userspace implementation
from libc/gen.

No objections from:	deischen
Tested by:	pho, antoine (exp-run) (previous versions)
Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
2015-01-03 18:38:46 +00:00
..
doc Update jemalloc to version 3.6.0. 2014-03-31 17:04:04 +00:00
include/jemalloc Fix known issues which blow up the process after dlopen("libthr.so") 2015-01-03 18:38:46 +00:00
src Fix known issues which blow up the process after dlopen("libthr.so") 2015-01-03 18:38:46 +00:00
ChangeLog Update jemalloc to version 3.6.0. 2014-03-31 17:04:04 +00:00
COPYING Update jemalloc to version 3.5.0. 2014-01-23 02:47:36 +00:00
FREEBSD-diffs Update jemalloc to version 3.6.0. 2014-03-31 17:04:04 +00:00
FREEBSD-upgrade Update jemalloc to version 3.5.0. 2014-01-23 02:47:36 +00:00
FREEBSD-Xlist Update jemalloc to version 3.5.1. 2014-02-26 02:36:59 +00:00
VERSION Update jemalloc to version 3.6.0. 2014-03-31 17:04:04 +00:00