CVS import: src/external/bsd/jemalloc/dist
"Christos Zoulas" <[email protected]>
| Newsgroups | gmane.os.netbsd.devel.cvs |
|---|---|
| Message-ID | <[email protected]> |
Module Name: src Committed By: christos Date: Sun Apr 19 16:21:23 UTC 2026 Update of /cvsroot/src/external/bsd/jemalloc/dist In directory ivanova.netbsd.org:/tmp/cvs-serv18116 Log Message: Import jemalloc-5.3.1 (previous was 5.3.0) This release includes over 390 commits spanning bug fixes, new features, performance optimizations, and portability improvements. Multiple percent of system-level metric improvements were measured in tested production workloads. The release has gone through large-scale production testing at Meta. New features: Support pvalloc. (@Lapenkov: 5b1f2cc) Add double free detection for the debug build. (@izaitsevfb: 36366f3, @guangli-dai: 42daa1a, @divanorama: 1897f18) Add compile-time option --enable-pageid to enable memory mapping annotation. (@devnexen: 4fc5c4f) Add runtime option prof_bt_max to control the max stack depth for profiling. (@guangli-dai: a0734fd) Add compile-time option --enable-force-getenv to use getenv instead of secure_getenv. (@interwq: 481bbfc) Add compile-time option --disable-dss to disable the usage of sbrk(2). (@Svetlitski: ea5b7be) Add runtime option tcache_ncached_max to control the number of items in each size bin in the thread cache. (@guangli-dai: 8a22d10) Add runtime option calloc_madvise_threshold to determine if kernel or memset is used to zero the allocations for calloc. (@nullptr0-0: 5081c16) Add compile-time option --disable-user-config to disable reading the runtime configurations from /etc/malloc.conf or environment variable MALLOC_CONF. (@roblabla: c17bf8b) Add runtime option disable_large_size_classes to guard the new usable size calculation, which minimizes the memory overhead for large allocations, i.e., >= 4 * PAGE. (@guangli-dai: c067a55, 8347f10) Enable process_madvise usage, add runtime option process_madvise_max_batch to control the max # of regions in each madvise batch. (@interwq: 22440a0, @spredolac: 4246475) Add mallctl interfaces: opt.prof_bt_max (@guangli-dai: a0734fd) arena.<i>.name to set and get arena names. (@guangli-dai: ba19d2c) thread.tcache.max to set and get the tcache_max of the current thread. (@guangli-dai: a442d9b) thread.tcache.ncached_max.write and thread.tcache.ncached_max.read_sizeclass to set and get the ncached_max setup of the current thread. (@guangli-dai: 630f7de, 6b197fd) arenas.hugepage to return the hugepage size used, also exported to malloc stats. (@ilvokhin: 90c627e) approximate_stats.active to return an estimate of the current active bytes, which should not be compared with other stats retrieved. (@guangli-dai: 0988583) Bug fixes: Prevent potential deadlocks in decaying during reentrancy. (@interwq: 434a68e) Fix segfault in extent coalescing. (@Svetlitski: 12311fe) Add null pointer detections in mallctl calls. (@Svetlitski: dc0a184, 0288126) Make mallctl arenas.lookup triable without crashing on invalid pointers. (@auxten: 019cccc, 5bac384) Demote sampled allocations for proper deallocations during arena_reset. (@Svetlitski: 62648c8) Fix jemalloc's read(2) and write(2). (@Svetlitski: d2c9ed3, @lexprfuncall: 9fdc116) Fix the pkg-config metadata file. (@BtbN: ed7e6fe, ce8ce99) Fix the autogen.sh so that it accepts quoted extra options. (@honggyukim: f6fe6ab) Fix rallocx() to set errno to ENOMEM upon OOMing. (@arter97: 38056fe, @interwq: 83b0757) Avoid stack overflow for internal variable array usage. (@nullptr0-0: 47c9bcd, 48f66cf, @xinydev: 9169e92) Fix background thread initialization race. (@puzpuzpuz: 4d0ffa0) Guard os_page_id against a NULL address. (@lexprfuncall: 79cc7dc) Handle tcache init failures gracefully. (@lexprfuncall: a056c20) Fix missing release of acquired neighbor edata in extent_try_coalesce_impl. (@spredolac: 675ab07) Fix memory leak of old curr_reg on san_bump_grow_locked failure. (@spredolac: 5904a42) Fix large alloc nrequests under-counting on cache misses. (@spredolac: 3cc56d3) Portability improvements: Fix the build in C99. (@abaelhe: 56ddbea) Add pthread_setaffinity_np detection for non Linux/BSD platforms. (@devnexen: 4c95c95) Make VARIABLE_ARRAY compatible with compilers not supporting VLA, i.e., Visual Studio C compiler in C11 or C17 modes. (@madscientist: be65438) Fix the build on Linux using musl library. (@marv: aba1645, 45249cf) Reduce the memory overhead in small allocation sampling for systems with larger page sizes, e.g., ARM. (@Svetlitski: 5a858c6) Add C23's free_sized and free_aligned_sized. (@Svetlitski: cdb2c0e) Enable heap profiling on MacOS. (@nullptr0-0: 4b555c1) Fix incorrect printing on 32bit. (@sundb: 630434b) Make JEMALLOC_CXX_THROW compatible with C++ versions newer than C++17. (@r-barnes, @guangli-dai: 21bcc0a) Fix mmap tag conflicts on MacOS. (@kdrag0n: c893fcd) Fix monotonic timer assumption for win32. (@burtonli: 8dc97b1) Fix VM over-reservation on systems with larger pages, e.g., aarch64. (@interwq: cd05b19) Remove unreachable() macro conditionally to prevent definition conflicts for C23+. (@appujee: d8486b2, 4b88bdd) Fix dlsym failure observed on FreeBSD. (@rhelmot: 86bbaba) Change the default page size to 64KB on aarch64 Linux. (@lexprfuncall: 9442300) Update config.guess and config.sub to the latest version. (@lexprfuncall: c51949e) Determine the page size on Android from NDK header files. (@lexprfuncall: c51abba) Improve the portability of grep patterns in configure.ac. (@lexprfuncall: 365747b) Add compile-time option --with-cxx-stdlib to specify the C++ standard library. (@yuxuanchen1997: a10ef3e) Optimizations and refactors: Enable tcache for deallocation-only threads. (@interwq: 143e9c4) Inline to accelerate operator delete. (@guangli-dai: e8f9f13) Optimize pairing heap's performance. (@deadalnix: 5266152, be6da4f, 543e2d6, 10d7131, 92aa52c, @Svetlitski: 36ca0c1) Inline the storage for thread name in the profiling data. (@interwq: ce0b7ab, e62aa47) Optimize a hot function edata_cmp_summary_comp to accelerate it. (@Svetlitski: 6841110, @guangli-dai: 0181aaa) Allocate thread cache using the base allocator, which enables thread cache to use thp when metadata_thp is turned on. (@interwq: 72cfdce) Allow oversize arena not to purge immediately when background threads are enabled, although the default decay time is 0 to be back compatible. (@interwq: d131331) Optimize thread-local storage implementation on Windows. (@mcfi: 9e123a8, 3a0d9cd) Optimize fast path to allow static size class computation. (@interwq: 323ed2e) Redesign tcache GC to regulate the frequency and make it locality-aware. The new design is default on, guarded by option experimental_tcache_gc. (@nullptr0-0: 0c88be9, e2c9f3a, 14d5dc1, @deadalnix: 5afff2e) Reduce the arena switching overhead by avoiding forced purging when background thread is enabled. (@interwq: a3910b9) Improve the reuse efficiency by limiting the maximum coalesced size for large extents. (@jiebinn: 3c14707) Refactor thread events to allow registration of users' thread events and remove prof_threshold as the built-in event. (@spredolac: e6864c6, 015b017, 34ace91) Documentation: Update Windows building instructions. (@Lapenkov: 3713932) Add vcpkg installation instructions. (@LilyWangLL: c0c9783) Update profiling internals with an example. (@jordalgo: b04e766) Status: Vendor Tag: JASONE Release Tags: jemailoc-5-3-1 U src/external/bsd/jemalloc/dist/.appveyor.yml U src/external/bsd/jemalloc/dist/.autom4te.cfg U src/external/bsd/jemalloc/dist/.clang-format N src/external/bsd/jemalloc/dist/.git-blame-ignore-revs U src/external/bsd/jemalloc/dist/.travis.yml U src/external/bsd/jemalloc/dist/COPYING U src/external/bsd/jemalloc/dist/ChangeLog U src/external/bsd/jemalloc/dist/INSTALL.md U src/external/bsd/jemalloc/dist/Makefile.in U src/external/bsd/jemalloc/dist/README U src/external/bsd/jemalloc/dist/TUNING.md U src/external/bsd/jemalloc/dist/autogen.sh U src/external/bsd/jemalloc/dist/config.stamp.in U src/external/bsd/jemalloc/dist/configure.ac U src/external/bsd/jemalloc/dist/jemalloc.pc.in U src/external/bsd/jemalloc/dist/run_tests.sh U src/external/bsd/jemalloc/dist/VERSION U src/external/bsd/jemalloc/dist/configure N src/external/bsd/jemalloc/dist/config.log N src/external/bsd/jemalloc/dist/config.status N src/external/bsd/jemalloc/dist/Makefile N src/external/bsd/jemalloc/dist/jemalloc.pc N src/external/bsd/jemalloc/dist/config.stamp N src/external/bsd/jemalloc/dist/.github/workflows/check_formatting.yaml N src/external/bsd/jemalloc/dist/.github/workflows/freebsd-ci.yml N src/external/bsd/jemalloc/dist/.github/workflows/linux-ci.yml N src/external/bsd/jemalloc/dist/.github/workflows/macos-ci.yml N src/external/bsd/jemalloc/dist/.github/workflows/static_analysis.yaml N src/external/bsd/jemalloc/dist/.github/workflows/windows-ci.yml U src/external/bsd/jemalloc/dist/bin/jemalloc-config.in U src/external/bsd/jemalloc/dist/bin/jemalloc.sh.in U src/external/bsd/jemalloc/dist/bin/jeprof.in N src/external/bsd/jemalloc/dist/bin/jemalloc-config N src/external/bsd/jemalloc/dist/bin/jemalloc.sh N src/external/bsd/jemalloc/dist/bin/jeprof C src/external/bsd/jemalloc/dist/build-aux/config.guess U src/external/bsd/jemalloc/dist/build-aux/config.sub U src/external/bsd/jemalloc/dist/build-aux/install-sh U src/external/bsd/jemalloc/dist/doc/html.xsl.in U src/external/bsd/jemalloc/dist/doc/jemalloc.xml.in U src/external/bsd/jemalloc/dist/doc/manpages.xsl.in U src/external/bsd/jemalloc/dist/doc/stylesheet.xsl N src/external/bsd/jemalloc/dist/doc/html.xsl N src/external/bsd/jemalloc/dist/doc/manpages.xsl N src/external/bsd/jemalloc/dist/doc/jemalloc.xml U src/external/bsd/jemalloc/dist/doc/jemalloc.html U src/external/bsd/jemalloc/dist/doc/jemalloc.3 U src/external/bsd/jemalloc/dist/doc_internal/PROFILING_INTERNALS.md U src/external/bsd/jemalloc/dist/doc_internal/jemalloc.svg U src/external/bsd/jemalloc/dist/include/jemalloc/jemalloc.sh U src/external/bsd/jemalloc/dist/include/jemalloc/jemalloc_defs.h.in U src/external/bsd/jemalloc/dist/include/jemalloc/jemalloc_macros.h.in U src/external/bsd/jemalloc/dist/include/jemalloc/jemalloc_mangle.sh U src/external/bsd/jemalloc/dist/include/jemalloc/jemalloc_protos.h.in U src/external/bsd/jemalloc/dist/include/jemalloc/jemalloc_rename.sh U src/external/bsd/jemalloc/dist/include/jemalloc/jemalloc_typedefs.h.in N src/external/bsd/jemalloc/dist/include/jemalloc/jemalloc_macros.h N src/external/bsd/jemalloc/dist/include/jemalloc/jemalloc_protos.h N src/external/bsd/jemalloc/dist/include/jemalloc/jemalloc_typedefs.h N src/external/bsd/jemalloc/dist/include/jemalloc/jemalloc_defs.h N src/external/bsd/jemalloc/dist/include/jemalloc/jemalloc_protos_jet.h N src/external/bsd/jemalloc/dist/include/jemalloc/jemalloc_rename.h N src/external/bsd/jemalloc/dist/include/jemalloc/jemalloc_mangle.h N src/external/bsd/jemalloc/dist/include/jemalloc/jemalloc_mangle_jet.h N src/external/bsd/jemalloc/dist/include/jemalloc/jemalloc.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/arena_externs.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/arena_inlines_a.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/arena_inlines_b.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/arena_stats.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/arena_structs.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/arena_types.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/assert.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/atomic.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/atomic_c11.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/atomic_gcc_atomic.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/atomic_gcc_sync.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/atomic_msvc.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/background_thread_externs.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/background_thread_inlines.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/background_thread_structs.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/base.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/bin.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/bin_info.h N src/external/bsd/jemalloc/dist/include/jemalloc/internal/bin_inlines.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/bin_stats.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/bin_types.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/bit_util.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/bitmap.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/buf_writer.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/cache_bin.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/ckh.h N src/external/bsd/jemalloc/dist/include/jemalloc/internal/conf.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/counter.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/ctl.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/decay.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/div.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/ecache.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/edata.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/edata_cache.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/ehooks.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/emap.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/emitter.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/eset.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/exp_grow.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/extent.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/extent_dss.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/extent_mmap.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/fb.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/fxp.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/hash.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/hook.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/hpa.h N src/external/bsd/jemalloc/dist/include/jemalloc/internal/hpa_central.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/hpa_hooks.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/hpa_opts.h N src/external/bsd/jemalloc/dist/include/jemalloc/internal/hpa_utils.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/hpdata.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/inspect.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_internal_decls.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_internal_defs.h.in U src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_internal_externs.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_internal_includes.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_internal_inlines_a.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_internal_inlines_b.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_internal_inlines_c.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_internal_macros.h N src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_internal_overrides.h N src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_probe.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_internal_types.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_preamble.h.in N src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_probe_custom.h N src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_probe_stap.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/large_externs.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/lockedint.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/log.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/malloc_io.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/mpsc_queue.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/mutex.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/mutex_prof.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/nstime.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/pa.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/pac.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/pages.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/pai.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/peak.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/peak_event.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/ph.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/private_namespace.sh U src/external/bsd/jemalloc/dist/include/jemalloc/internal/private_symbols.sh U src/external/bsd/jemalloc/dist/include/jemalloc/internal/prng.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/prof_data.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/prof_externs.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/prof_hook.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/prof_inlines.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/prof_log.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/prof_recent.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/prof_stats.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/prof_structs.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/prof_sys.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/prof_types.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/psset.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/public_namespace.sh U src/external/bsd/jemalloc/dist/include/jemalloc/internal/public_unnamespace.sh C src/external/bsd/jemalloc/dist/include/jemalloc/internal/ql.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/qr.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/quantum.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/rb.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/rtree.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/rtree_tsd.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/safety_check.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/san.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/san_bump.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/sc.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/sec.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/sec_opts.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/seq.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/slab_data.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/smoothstep.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/smoothstep.sh C src/external/bsd/jemalloc/dist/include/jemalloc/internal/spin.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/stats.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/sz.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/tcache_externs.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/tcache_inlines.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/tcache_structs.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/tcache_types.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/test_hooks.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/thread_event.h N src/external/bsd/jemalloc/dist/include/jemalloc/internal/thread_event_registry.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/ticker.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/tsd.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/tsd_generic.h N src/external/bsd/jemalloc/dist/include/jemalloc/internal/tsd_internals.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/tsd_malloc_thread_cleanup.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/tsd_tls.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/tsd_types.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/tsd_win.h U src/external/bsd/jemalloc/dist/include/jemalloc/internal/typed_list.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/util.h C src/external/bsd/jemalloc/dist/include/jemalloc/internal/witness.h N src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_preamble.h N src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_internal_defs.h N src/external/bsd/jemalloc/dist/include/jemalloc/internal/public_symbols.txt N src/external/bsd/jemalloc/dist/include/jemalloc/internal/private_symbols.awk N src/external/bsd/jemalloc/dist/include/jemalloc/internal/private_symbols_jet.awk N src/external/bsd/jemalloc/dist/include/jemalloc/internal/public_namespace.h N src/external/bsd/jemalloc/dist/include/jemalloc/internal/public_unnamespace.h U src/external/bsd/jemalloc/dist/include/msvc_compat/strings.h U src/external/bsd/jemalloc/dist/include/msvc_compat/windows_extra.h U src/external/bsd/jemalloc/dist/include/msvc_compat/C99/stdbool.h U src/external/bsd/jemalloc/dist/include/msvc_compat/C99/stdint.h U src/external/bsd/jemalloc/dist/m4/ax_cxx_compile_stdcxx.m4 U src/external/bsd/jemalloc/dist/msvc/jemalloc_vc2015.sln U src/external/bsd/jemalloc/dist/msvc/jemalloc_vc2017.sln N src/external/bsd/jemalloc/dist/msvc/jemalloc_vc2019.sln N src/external/bsd/jemalloc/dist/msvc/jemalloc_vc2022.sln U src/external/bsd/jemalloc/dist/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj U src/external/bsd/jemalloc/dist/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj.filters U src/external/bsd/jemalloc/dist/msvc/projects/vc2015/test_threads/test_threads.vcxproj U src/external/bsd/jemalloc/dist/msvc/projects/vc2015/test_threads/test_threads.vcxproj.filters U src/external/bsd/jemalloc/dist/msvc/projects/vc2017/jemalloc/jemalloc.vcxproj U src/external/bsd/jemalloc/dist/msvc/projects/vc2017/jemalloc/jemalloc.vcxproj.filters U src/external/bsd/jemalloc/dist/msvc/projects/vc2017/test_threads/test_threads.vcxproj U src/external/bsd/jemalloc/dist/msvc/projects/vc2017/test_threads/test_threads.vcxproj.filters N src/external/bsd/jemalloc/dist/msvc/projects/vc2019/jemalloc/jemalloc.vcxproj N src/external/bsd/jemalloc/dist/msvc/projects/vc2019/jemalloc/jemalloc.vcxproj.filters N src/external/bsd/jemalloc/dist/msvc/projects/vc2019/test_threads/test_threads.vcxproj N src/external/bsd/jemalloc/dist/msvc/projects/vc2019/test_threads/test_threads.vcxproj.filters N src/external/bsd/jemalloc/dist/msvc/projects/vc2022/jemalloc/jemalloc.vcxproj N src/external/bsd/jemalloc/dist/msvc/projects/vc2022/jemalloc/jemalloc.vcxproj.filters N src/external/bsd/jemalloc/dist/msvc/projects/vc2022/test_threads/test_threads.vcxproj N src/external/bsd/jemalloc/dist/msvc/projects/vc2022/test_threads/test_threads.vcxproj.filters U src/external/bsd/jemalloc/dist/msvc/test_threads/test_threads.cpp U src/external/bsd/jemalloc/dist/msvc/test_threads/test_threads.h U src/external/bsd/jemalloc/dist/msvc/test_threads/test_threads_main.cpp N src/external/bsd/jemalloc/dist/scripts/README_GH_ACTIONS.md U src/external/bsd/jemalloc/dist/scripts/check-formatting.sh N src/external/bsd/jemalloc/dist/scripts/check_trailing_whitespace.sh N src/external/bsd/jemalloc/dist/scripts/gen_gh_actions.py U src/external/bsd/jemalloc/dist/scripts/gen_run_tests.py U src/external/bsd/jemalloc/dist/scripts/gen_travis.py N src/external/bsd/jemalloc/dist/scripts/run_static_analysis.sh U src/external/bsd/jemalloc/dist/scripts/freebsd/before_install.sh U src/external/bsd/jemalloc/dist/scripts/freebsd/before_script.sh U src/external/bsd/jemalloc/dist/scripts/freebsd/script.sh U src/external/bsd/jemalloc/dist/scripts/linux/before_install.sh U src/external/bsd/jemalloc/dist/scripts/windows/before_install.sh U src/external/bsd/jemalloc/dist/scripts/windows/before_script.sh U src/external/bsd/jemalloc/dist/scripts/windows/script.sh C src/external/bsd/jemalloc/dist/src/arena.c C src/external/bsd/jemalloc/dist/src/background_thread.c C src/external/bsd/jemalloc/dist/src/base.c U src/external/bsd/jemalloc/dist/src/bin.c U src/external/bsd/jemalloc/dist/src/bin_info.c U src/external/bsd/jemalloc/dist/src/bitmap.c U src/external/bsd/jemalloc/dist/src/buf_writer.c U src/external/bsd/jemalloc/dist/src/cache_bin.c C src/external/bsd/jemalloc/dist/src/ckh.c N src/external/bsd/jemalloc/dist/src/conf.c U src/external/bsd/jemalloc/dist/src/counter.c C src/external/bsd/jemalloc/dist/src/ctl.c C src/external/bsd/jemalloc/dist/src/decay.c U src/external/bsd/jemalloc/dist/src/div.c U src/external/bsd/jemalloc/dist/src/ecache.c U src/external/bsd/jemalloc/dist/src/edata.c U src/external/bsd/jemalloc/dist/src/edata_cache.c C src/external/bsd/jemalloc/dist/src/ehooks.c U src/external/bsd/jemalloc/dist/src/emap.c U src/external/bsd/jemalloc/dist/src/eset.c U src/external/bsd/jemalloc/dist/src/exp_grow.c C src/external/bsd/jemalloc/dist/src/extent.c U src/external/bsd/jemalloc/dist/src/extent_dss.c U src/external/bsd/jemalloc/dist/src/extent_mmap.c C src/external/bsd/jemalloc/dist/src/fxp.c C src/external/bsd/jemalloc/dist/src/hook.c C src/external/bsd/jemalloc/dist/src/hpa.c N src/external/bsd/jemalloc/dist/src/hpa_central.c U src/external/bsd/jemalloc/dist/src/hpa_hooks.c N src/external/bsd/jemalloc/dist/src/hpa_utils.c U src/external/bsd/jemalloc/dist/src/hpdata.c C src/external/bsd/jemalloc/dist/src/inspect.c C src/external/bsd/jemalloc/dist/src/jemalloc.c U src/external/bsd/jemalloc/dist/src/jemalloc_cpp.cpp U src/external/bsd/jemalloc/dist/src/large.c U src/external/bsd/jemalloc/dist/src/log.c C src/external/bsd/jemalloc/dist/src/malloc_io.c C src/external/bsd/jemalloc/dist/src/mutex.c U src/external/bsd/jemalloc/dist/src/nstime.c C src/external/bsd/jemalloc/dist/src/pa.c U src/external/bsd/jemalloc/dist/src/pa_extra.c U src/external/bsd/jemalloc/dist/src/pac.c C src/external/bsd/jemalloc/dist/src/pages.c U src/external/bsd/jemalloc/dist/src/peak_event.c C src/external/bsd/jemalloc/dist/src/prof.c C src/external/bsd/jemalloc/dist/src/prof_data.c U src/external/bsd/jemalloc/dist/src/prof_log.c C src/external/bsd/jemalloc/dist/src/prof_recent.c N src/external/bsd/jemalloc/dist/src/prof_stack_range.c U src/external/bsd/jemalloc/dist/src/prof_stats.c U src/external/bsd/jemalloc/dist/src/psset.c C src/external/bsd/jemalloc/dist/src/prof_sys.c C src/external/bsd/jemalloc/dist/src/rtree.c C src/external/bsd/jemalloc/dist/src/safety_check.c U src/external/bsd/jemalloc/dist/src/san.c U src/external/bsd/jemalloc/dist/src/san_bump.c U src/external/bsd/jemalloc/dist/src/sc.c U src/external/bsd/jemalloc/dist/src/sec.c C src/external/bsd/jemalloc/dist/src/stats.c U src/external/bsd/jemalloc/dist/src/sz.c C src/external/bsd/jemalloc/dist/src/tcache.c C src/external/bsd/jemalloc/dist/src/test_hooks.c U src/external/bsd/jemalloc/dist/src/thread_event.c N src/external/bsd/jemalloc/dist/src/thread_event_registry.c U src/external/bsd/jemalloc/dist/src/ticker.c U src/external/bsd/jemalloc/dist/src/ticker.py C src/external/bsd/jemalloc/dist/src/tsd.c N src/external/bsd/jemalloc/dist/src/util.c C src/external/bsd/jemalloc/dist/src/witness.c U src/external/bsd/jemalloc/dist/src/zone.c U src/external/bsd/jemalloc/dist/test/test.sh.in N src/external/bsd/jemalloc/dist/test/test.sh U src/external/bsd/jemalloc/dist/test/analyze/prof_bias.c U src/external/bsd/jemalloc/dist/test/analyze/rand.c U src/external/bsd/jemalloc/dist/test/analyze/sizes.c U src/external/bsd/jemalloc/dist/test/include/test/SFMT-alti.h U src/external/bsd/jemalloc/dist/test/include/test/SFMT-params.h U src/external/bsd/jemalloc/dist/test/include/test/SFMT-params11213.h U src/external/bsd/jemalloc/dist/test/include/test/SFMT-params1279.h U src/external/bsd/jemalloc/dist/test/include/test/SFMT-params132049.h U src/external/bsd/jemalloc/dist/test/include/test/SFMT-params19937.h U src/external/bsd/jemalloc/dist/test/include/test/SFMT-params216091.h U src/external/bsd/jemalloc/dist/test/include/test/SFMT-params2281.h U src/external/bsd/jemalloc/dist/test/include/test/SFMT-params4253.h U src/external/bsd/jemalloc/dist/test/include/test/SFMT-params44497.h U src/external/bsd/jemalloc/dist/test/include/test/SFMT-params607.h U src/external/bsd/jemalloc/dist/test/include/test/SFMT-params86243.h U src/external/bsd/jemalloc/dist/test/include/test/SFMT-sse2.h U src/external/bsd/jemalloc/dist/test/include/test/SFMT.h U src/external/bsd/jemalloc/dist/test/include/test/arena_util.h U src/external/bsd/jemalloc/dist/test/include/test/bench.h U src/external/bsd/jemalloc/dist/test/include/test/bgthd.h U src/external/bsd/jemalloc/dist/test/include/test/btalloc.h U src/external/bsd/jemalloc/dist/test/include/test/extent_hooks.h U src/external/bsd/jemalloc/dist/test/include/test/jemalloc_test.h.in U src/external/bsd/jemalloc/dist/test/include/test/jemalloc_test_defs.h.in U src/external/bsd/jemalloc/dist/test/include/test/math.h U src/external/bsd/jemalloc/dist/test/include/test/mq.h U src/external/bsd/jemalloc/dist/test/include/test/mtx.h U src/external/bsd/jemalloc/dist/test/include/test/nbits.h U src/external/bsd/jemalloc/dist/test/include/test/san.h U src/external/bsd/jemalloc/dist/test/include/test/sleep.h U src/external/bsd/jemalloc/dist/test/include/test/test.h U src/external/bsd/jemalloc/dist/test/include/test/thd.h U src/external/bsd/jemalloc/dist/test/include/test/timer.h N src/external/bsd/jemalloc/dist/test/include/test/jemalloc_test.h N src/external/bsd/jemalloc/dist/test/include/test/jemalloc_test_defs.h U src/external/bsd/jemalloc/dist/test/integration/MALLOCX_ARENA.c U src/external/bsd/jemalloc/dist/test/integration/aligned_alloc.c U src/external/bsd/jemalloc/dist/test/integration/allocated.c U src/external/bsd/jemalloc/dist/test/integration/extent.c U src/external/bsd/jemalloc/dist/test/integration/extent.sh U src/external/bsd/jemalloc/dist/test/integration/malloc.c U src/external/bsd/jemalloc/dist/test/integration/mallocx.c U src/external/bsd/jemalloc/dist/test/integration/mallocx.sh U src/external/bsd/jemalloc/dist/test/integration/overflow.c U src/external/bsd/jemalloc/dist/test/integration/posix_memalign.c U src/external/bsd/jemalloc/dist/test/integration/rallocx.c U src/external/bsd/jemalloc/dist/test/integration/sdallocx.c U src/external/bsd/jemalloc/dist/test/integration/slab_sizes.c U src/external/bsd/jemalloc/dist/test/integration/slab_sizes.sh U src/external/bsd/jemalloc/dist/test/integration/smallocx.c U src/external/bsd/jemalloc/dist/test/integration/smallocx.sh U src/external/bsd/jemalloc/dist/test/integration/thread_arena.c U src/external/bsd/jemalloc/dist/test/integration/thread_tcache_enabled.c U src/external/bsd/jemalloc/dist/test/integration/xallocx.c U src/external/bsd/jemalloc/dist/test/integration/xallocx.sh U src/external/bsd/jemalloc/dist/test/integration/cpp/basic.cpp U src/external/bsd/jemalloc/dist/test/integration/cpp/infallible_new_false.cpp U src/external/bsd/jemalloc/dist/test/integration/cpp/infallible_new_false.sh U src/external/bsd/jemalloc/dist/test/integration/cpp/infallible_new_true.cpp U src/external/bsd/jemalloc/dist/test/integration/cpp/infallible_new_true.sh U src/external/bsd/jemalloc/dist/test/src/SFMT.c U src/external/bsd/jemalloc/dist/test/src/btalloc.c U src/external/bsd/jemalloc/dist/test/src/btalloc_0.c U src/external/bsd/jemalloc/dist/test/src/btalloc_1.c U src/external/bsd/jemalloc/dist/test/src/math.c U src/external/bsd/jemalloc/dist/test/src/mtx.c U src/external/bsd/jemalloc/dist/test/src/sleep.c U src/external/bsd/jemalloc/dist/test/src/test.c U src/external/bsd/jemalloc/dist/test/src/thd.c U src/external/bsd/jemalloc/dist/test/src/timer.c U src/external/bsd/jemalloc/dist/test/stress/batch_alloc.c U src/external/bsd/jemalloc/dist/test/stress/fill_flush.c U src/external/bsd/jemalloc/dist/test/stress/hookbench.c U src/external/bsd/jemalloc/dist/test/stress/large_microbench.c U src/external/bsd/jemalloc/dist/test/stress/mallctl.c U src/external/bsd/jemalloc/dist/test/stress/microbench.c N src/external/bsd/jemalloc/dist/test/stress/cpp/microbench.cpp N src/external/bsd/jemalloc/dist/test/stress/pa/README.md N src/external/bsd/jemalloc/dist/test/stress/pa/pa_data_preprocessor.cpp N src/external/bsd/jemalloc/dist/test/stress/pa/pa_microbench.c U src/external/bsd/jemalloc/dist/test/unit/SFMT.c U src/external/bsd/jemalloc/dist/test/unit/a0.c U src/external/bsd/jemalloc/dist/test/unit/arena_decay.c U src/external/bsd/jemalloc/dist/test/unit/arena_decay.sh U src/external/bsd/jemalloc/dist/test/unit/arena_reset.c U src/external/bsd/jemalloc/dist/test/unit/arena_reset_prof.c U src/external/bsd/jemalloc/dist/test/unit/arena_reset_prof.sh U src/external/bsd/jemalloc/dist/test/unit/atomic.c U src/external/bsd/jemalloc/dist/test/unit/background_thread.c U src/external/bsd/jemalloc/dist/test/unit/background_thread_enable.c N src/external/bsd/jemalloc/dist/test/unit/background_thread_init.c U src/external/bsd/jemalloc/dist/test/unit/base.c U src/external/bsd/jemalloc/dist/test/unit/batch_alloc.c U src/external/bsd/jemalloc/dist/test/unit/batch_alloc.sh U src/external/bsd/jemalloc/dist/test/unit/batch_alloc_prof.c U src/external/bsd/jemalloc/dist/test/unit/batch_alloc_prof.sh N src/external/bsd/jemalloc/dist/test/unit/bin.c U src/external/bsd/jemalloc/dist/test/unit/binshard.c U src/external/bsd/jemalloc/dist/test/unit/binshard.sh U src/external/bsd/jemalloc/dist/test/unit/bit_util.c U src/external/bsd/jemalloc/dist/test/unit/bitmap.c U src/external/bsd/jemalloc/dist/test/unit/buf_writer.c U src/external/bsd/jemalloc/dist/test/unit/cache_bin.c U src/external/bsd/jemalloc/dist/test/unit/ckh.c N src/external/bsd/jemalloc/dist/test/unit/conf.c N src/external/bsd/jemalloc/dist/test/unit/conf_init_0.c N src/external/bsd/jemalloc/dist/test/unit/conf_init_1.c N src/external/bsd/jemalloc/dist/test/unit/conf_init_confirm.c N src/external/bsd/jemalloc/dist/test/unit/conf_parse.c U src/external/bsd/jemalloc/dist/test/unit/counter.c U src/external/bsd/jemalloc/dist/test/unit/decay.c U src/external/bsd/jemalloc/dist/test/unit/div.c U src/external/bsd/jemalloc/dist/test/unit/double_free.c U src/external/bsd/jemalloc/dist/test/unit/double_free.h U src/external/bsd/jemalloc/dist/test/unit/edata_cache.c U src/external/bsd/jemalloc/dist/test/unit/emitter.c U src/external/bsd/jemalloc/dist/test/unit/extent_quantize.c U src/external/bsd/jemalloc/dist/test/unit/fb.c U src/external/bsd/jemalloc/dist/test/unit/fork.c U src/external/bsd/jemalloc/dist/test/unit/fxp.c U src/external/bsd/jemalloc/dist/test/unit/hash.c U src/external/bsd/jemalloc/dist/test/unit/hook.c U src/external/bsd/jemalloc/dist/test/unit/hpa.c N src/external/bsd/jemalloc/dist/test/unit/hpa.sh U src/external/bsd/jemalloc/dist/test/unit/hpa_background_thread.c U src/external/bsd/jemalloc/dist/test/unit/hpa_background_thread.sh N src/external/bsd/jemalloc/dist/test/unit/hpa_sec_integration.c N src/external/bsd/jemalloc/dist/test/unit/hpa_sec_integration.sh N src/external/bsd/jemalloc/dist/test/unit/hpa_thp_always.c N src/external/bsd/jemalloc/dist/test/unit/hpa_thp_always.sh N src/external/bsd/jemalloc/dist/test/unit/hpa_vectorized_madvise.c N src/external/bsd/jemalloc/dist/test/unit/hpa_vectorized_madvise.sh N src/external/bsd/jemalloc/dist/test/unit/hpa_vectorized_madvise_large_batch.c N src/external/bsd/jemalloc/dist/test/unit/hpa_vectorized_madvise_large_batch.sh U src/external/bsd/jemalloc/dist/test/unit/hpdata.c U src/external/bsd/jemalloc/dist/test/unit/huge.c U src/external/bsd/jemalloc/dist/test/unit/inspect.c U src/external/bsd/jemalloc/dist/test/unit/inspect.sh N src/external/bsd/jemalloc/dist/test/unit/json_stats.c U src/external/bsd/jemalloc/dist/test/unit/junk.c U src/external/bsd/jemalloc/dist/test/unit/junk.sh U src/external/bsd/jemalloc/dist/test/unit/junk_alloc.c U src/external/bsd/jemalloc/dist/test/unit/junk_alloc.sh U src/external/bsd/jemalloc/dist/test/unit/junk_free.c U src/external/bsd/jemalloc/dist/test/unit/junk_free.sh N src/external/bsd/jemalloc/dist/test/unit/large_ralloc.c U src/external/bsd/jemalloc/dist/test/unit/log.c U src/external/bsd/jemalloc/dist/test/unit/mallctl.c U src/external/bsd/jemalloc/dist/test/unit/malloc_conf_2.c U src/external/bsd/jemalloc/dist/test/unit/malloc_conf_2.sh U src/external/bsd/jemalloc/dist/test/unit/malloc_io.c U src/external/bsd/jemalloc/dist/test/unit/math.c U src/external/bsd/jemalloc/dist/test/unit/mpsc_queue.c U src/external/bsd/jemalloc/dist/test/unit/mq.c U src/external/bsd/jemalloc/dist/test/unit/mtx.c N src/external/bsd/jemalloc/dist/test/unit/ncached_max.c U src/external/bsd/jemalloc/dist/test/unit/nstime.c U src/external/bsd/jemalloc/dist/test/unit/oversize_threshold.c U src/external/bsd/jemalloc/dist/test/unit/pa.c U src/external/bsd/jemalloc/dist/test/unit/pack.c U src/external/bsd/jemalloc/dist/test/unit/pack.sh U src/external/bsd/jemalloc/dist/test/unit/pages.c U src/external/bsd/jemalloc/dist/test/unit/peak.c U src/external/bsd/jemalloc/dist/test/unit/ph.c U src/external/bsd/jemalloc/dist/test/unit/prng.c U src/external/bsd/jemalloc/dist/test/unit/prof_accum.c U src/external/bsd/jemalloc/dist/test/unit/prof_accum.sh U src/external/bsd/jemalloc/dist/test/unit/prof_active.c U src/external/bsd/jemalloc/dist/test/unit/prof_active.sh U src/external/bsd/jemalloc/dist/test/unit/prof_gdump.c U src/external/bsd/jemalloc/dist/test/unit/prof_gdump.sh U src/external/bsd/jemalloc/dist/test/unit/prof_hook.c U src/external/bsd/jemalloc/dist/test/unit/prof_hook.sh U src/external/bsd/jemalloc/dist/test/unit/prof_idump.c U src/external/bsd/jemalloc/dist/test/unit/prof_idump.sh U src/external/bsd/jemalloc/dist/test/unit/prof_log.c U src/external/bsd/jemalloc/dist/test/unit/prof_log.sh U src/external/bsd/jemalloc/dist/test/unit/prof_mdump.c U src/external/bsd/jemalloc/dist/test/unit/prof_mdump.sh U src/external/bsd/jemalloc/dist/test/unit/prof_recent.c U src/external/bsd/jemalloc/dist/test/unit/prof_recent.sh U src/external/bsd/jemalloc/dist/test/unit/prof_reset.c U src/external/bsd/jemalloc/dist/test/unit/prof_reset.sh N src/external/bsd/jemalloc/dist/test/unit/prof_small.c N src/external/bsd/jemalloc/dist/test/unit/prof_small.sh U src/external/bsd/jemalloc/dist/test/unit/prof_stats.c U src/external/bsd/jemalloc/dist/test/unit/prof_stats.sh U src/external/bsd/jemalloc/dist/test/unit/prof_sys_thread_name.c U src/external/bsd/jemalloc/dist/test/unit/prof_sys_thread_name.sh U src/external/bsd/jemalloc/dist/test/unit/prof_tctx.c U src/external/bsd/jemalloc/dist/test/unit/prof_tctx.sh U src/external/bsd/jemalloc/dist/test/unit/prof_thread_name.c U src/external/bsd/jemalloc/dist/test/unit/prof_thread_name.sh U src/external/bsd/jemalloc/dist/test/unit/psset.c U src/external/bsd/jemalloc/dist/test/unit/ql.c U src/external/bsd/jemalloc/dist/test/unit/qr.c U src/external/bsd/jemalloc/dist/test/unit/rb.c U src/external/bsd/jemalloc/dist/test/unit/retained.c U src/external/bsd/jemalloc/dist/test/unit/rtree.c U src/external/bsd/jemalloc/dist/test/unit/safety_check.c U src/external/bsd/jemalloc/dist/test/unit/safety_check.sh U src/external/bsd/jemalloc/dist/test/unit/san.c U src/external/bsd/jemalloc/dist/test/unit/san.sh U src/external/bsd/jemalloc/dist/test/unit/san_bump.c U src/external/bsd/jemalloc/dist/test/unit/sc.c U src/external/bsd/jemalloc/dist/test/unit/sec.c U src/external/bsd/jemalloc/dist/test/unit/seq.c U src/external/bsd/jemalloc/dist/test/unit/size_check.c U src/external/bsd/jemalloc/dist/test/unit/size_check.sh U src/external/bsd/jemalloc/dist/test/unit/size_classes.c N src/external/bsd/jemalloc/dist/test/unit/size_classes.sh U src/external/bsd/jemalloc/dist/test/unit/slab.c U src/external/bsd/jemalloc/dist/test/unit/smoothstep.c U src/external/bsd/jemalloc/dist/test/unit/spin.c U src/external/bsd/jemalloc/dist/test/unit/stats.c U src/external/bsd/jemalloc/dist/test/unit/stats_print.c U src/external/bsd/jemalloc/dist/test/unit/sz.c N src/external/bsd/jemalloc/dist/test/unit/tcache_init.c U src/external/bsd/jemalloc/dist/test/unit/tcache_max.c U src/external/bsd/jemalloc/dist/test/unit/tcache_max.sh U src/external/bsd/jemalloc/dist/test/unit/test_hooks.c U src/external/bsd/jemalloc/dist/test/unit/thread_event.c U src/external/bsd/jemalloc/dist/test/unit/thread_event.sh U src/external/bsd/jemalloc/dist/test/unit/ticker.c U src/external/bsd/jemalloc/dist/test/unit/tsd.c U src/external/bsd/jemalloc/dist/test/unit/uaf.c U src/external/bsd/jemalloc/dist/test/unit/witness.c U src/external/bsd/jemalloc/dist/test/unit/zero.c U src/external/bsd/jemalloc/dist/test/unit/zero.sh U src/external/bsd/jemalloc/dist/test/unit/zero_realloc_abort.c U src/external/bsd/jemalloc/dist/test/unit/zero_realloc_abort.sh U src/external/bsd/jemalloc/dist/test/unit/zero_realloc_alloc.c U src/external/bsd/jemalloc/dist/test/unit/zero_realloc_alloc.sh U src/external/bsd/jemalloc/dist/test/unit/zero_realloc_free.c U src/external/bsd/jemalloc/dist/test/unit/zero_realloc_free.sh U src/external/bsd/jemalloc/dist/test/unit/zero_reallocs.c U src/external/bsd/jemalloc/dist/test/unit/zero_reallocs.sh 67 conflicts created by this import. Use the following command to help the merge: cvs checkout -jJASONE:yesterday -jJASONE src/external/bsd/jemalloc/dist