| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(or loading a dso linked to libthr.so into process which was not
linked against threading library).
MFC r276630:
Remove interposing, fix malloc, reinstall signal handlers wrappers on
libthr load.
MFC r276681:
Avoid calling internal libc function through PLT or accessing data
though GOT.
MFC r277032:
Reduce the size of the interposing table and amount of
cancellation-handling code in the libthr.
MFC note:
r276646 ("do not erronously export 'openat' symbol from rtld") is not
applicable to stable/10 yet, since PATHFDS support was not merged.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
- Enable MALLOC_PRODUCTION
- Default dumpdev=NO
- Remove UPDATING entry regarding debugging features
- Bump __FreeBSD_version to 1000500
Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
implementations visible for use by applications. The functions $F that
are now weak symbols are:
allocm, calloc, dallocm, free, malloc, malloc_usable_size,
nallocm, posix_memalign, rallocm, realloc, sallocm
The non-weak implementations of $F are exported as __$F.
Submitted by: stevek@juniper.net
Reviewed by: jasone@, kib@
Approved by: jasone@ (jemalloc)
Obtained from: juniper Networks, Inc
|
| |
|
|
|
|
| |
non-MALLOC_PRODUCTION builds.
|
| |
|
|
|
|
|
|
| |
workaround for it in jemalloc_FreeBSD.h.
Reviewed by: jasone
|
|
|
|
| |
single-threaded applications.
|
|
|
|
|
| |
jemalloc assertion failures for debug builds, or as calloc() sometimes
returning non-zeroed memory for production builds.
|
|
|
|
|
| |
prior to 3.0.0 release). This version is likely very close to what will be
3.0.0.
|
|
|
|
|
|
|
|
|
|
|
| |
sometimes disappear from the resulting object file, if compiled with
clang. In particular, this can lead to errors when building world with
clang and -g, similar to:
/usr/obj/usr/src/tmp/usr/lib/libc.so: undefined reference to `_malloc_options'
Reported by: Conrad J. Sabatier <conrads@.no.cox.net>
Reviewed by: jasone
|
|
|
|
|
|
|
|
| |
LG_SIZEOF_PTR has to be defined as 3 when jemalloc is compiled for
64 bit platforms.
Reviewed by: juli
Approved by: jasone
|
|
|
|
|
|
|
|
|
| |
prior to 3.0.0 release). This fixes several bugs related to memory
initialization.
Mangle __jemalloc_a0{malloc,calloc,free}() just like all the other
library-internal symbols in jemalloc, and adjust the tls allocation code
in libc to use the mangled names.
|
|
|
|
| |
prior to 3.0.0 release), and mangle internal symbols.
|
|
|
|
|
| |
prior to 3.0.0 release), which supports atomic operations based on atomic(9).
This should fix build failures for several platforms.
|
|
prior to 3.0.0 release) as contrib/jemalloc, and integrate it into libc.
The code being imported by this commit diverged from
lib/libc/stdlib/malloc.c in March 2010, which means that a portion of
the jemalloc 1.0.0 ChangeLog entries are relevant, as are the entries
for all subsequent releases.
|