Source-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS import: src/external/bsd/jemalloc/dist



Module Name:    src
Committed By:   christos
Date:           Thu Sep 24 18:29:15 UTC 2026

Update of /cvsroot/src/external/bsd/jemalloc/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv21170

Log Message:
Import jemalloc 5.4.0 (previous was 5.3.1)

* 5.4.0 (Sep 17, 2026)

This release contains over 160 commits, focusing on the technical debts
cleaning including refactorings, bug fixes, test coverage improvement, and
option cleanups.  The release also includes portability improvements per
upstream issues report.

New features:
  - Add `EXTENT_ALLOC_FLAG_PINNED` so custom extent-allocation hooks can
    mark non-reclaimable mappings, such as HugeTLB pages, for preferential
    reuse outside the decay and purge pipeline.  Add the mallctl interfaces
    `stats.pinned`, `stats.arenas.<i>.pinned`,
    `stats.arenas.<i>.extents.<j>.npinned`,
    `stats.arenas.<i>.extents.<j>.pinned_bytes`, and
    `stats.arenas.<i>.mutexes.extents_pinned.{counter}` to report
    pinned-memory usage and mutex statistics.  (@binliu19: be2de8cc)
  - Allow resuming per-CPU arena selection via `thread.arena`.
    (@algunenano: 68c35f65)
  - Better align the contents of human-readable and JSON malloc statistics.
    (@spredolac: 68fe1be1, 30b1a410, 04aad97f)
  - Replace the runtime `experimental_infallible_new` option with the
    compile-time `--enable-cxx-infallible-new` option, enabling
    compiler-level optimizations and optimization in move constructors,
    and fix the `new(std::nothrow)` contract (@spredolac: 160ab9d7, fe336672)

Incompatible changes:
  - Adapt tcache fill and retention targets per bin to demand observed
    between GC events, replacing the fixed refill/flush policy.  Remove
    seven legacy non-experimental controls: `lg_tcache_nslots_mul`,
    `tcache_nslots_small_min`, `tcache_nslots_small_max`,
    `tcache_nslots_large`, `tcache_gc_delay_bytes`,
    `lg_tcache_flush_small_div`, and `lg_tcache_flush_large_div`.
    Corresponding `malloc_conf` settings are silently ignored, matching
    `opt.*` mallctls return ENOENT, and `tcache_ncached_max` remains
    supported.  (@spredolac: d13fe91a)

Bug fixes:
  - Preserve `errno` across `free`, `free_sized`, and `free_aligned_sized`,
    and across `process_madvise`-based page purging.  (@spredolac: 3a779661,
    86f05828)
  - Fix numeric overflow checks in size classes.  (@spredolac: 6b245225)
  - Accept NULL in `free_sized()` and `free_aligned_sized()` (C23
    correctness).  (@bigbruno: 7ce8b916)
  - Fix TSD lifecycle edge cases by 1) initializing thread-cache bins before
    marking the cache enabled, preventing reentrant bootstrap allocations
    from using uninitialized state, and 2) avoiding TSD recreation for late
    deallocations after thread teardown on generic-TSD platforms.
    (@fzakaria: 54f22c83, @spredolac: fb5499aa)
  - Use `O_CLOEXEC` when opening the THP sysfs file in `init_thp_state`.
    (@ibookstein: d0705543)
  - Fix duplicate `opt.stats_print` and `opt.stats_print_opts` fields in
    `malloc_stats_print` output.  (@spredolac: dfe3a2ed)
  - Fix a potential deadlock during `arena_reset`.  (@guangli-dai: 6957341f)
  - Fix a prof-sampling / guard-page interaction bug in the SAN.  (@gctony:
    e36a0fa5)

Optimizations and refactors:
  - Modularize jemalloc's front end by extracting arena management,
    initialization, fork orchestration, and allocation dispatch from
    `jemalloc.c`; untangle tcache/arena ownership; and consolidate the
    internal header graph to eliminate circular dependencies.  (@spredolac:
    ba1e2fe4, 88745978, 9d757223, de9ad145, ...)
  - Simplify ctl dispatch by refactoring arena helpers, internalizing an
    implementation-only control, replacing control-flow macros with typed
    helpers, and organizing `ctl.c` by subsystem.  (@spredolac: 9e143468,
    901365d4, 4e903a0a, 5bc8d6e9)
  - Cap the base-block growth heuristic to avoid virtual-memory exhaustion
    under rare racy conditions.  (@guangli-dai: 2f4db8cf)
  - Move background-thread lifecycle and state operations into the
    background-thread module, clarifying ownership independently of PAC/HPA
    callers.  (@guangli-dai: f1f07923)
  - Simplify the page-allocation boundary by replacing PAI vtable dispatch
    with direct PAC/HPA calls, removing the obsolete `pai_t`/`pai.h`
    abstraction, and moving deferred-work and decay orchestration out of the
    arena.  (@guangli-dai: 1dfa6f7a, 8edd1012, d410f43e)
  - Refactor statistics collection and rendering into separate
    gather/emission stages and descriptor-driven tables.  (@spredolac:
    184f304d, 80c8fcb4)
  - Introduce an OS abstraction layer and move platform-dependent
    file/process I/O, time, synchronization, CPU, virtual-memory, atfork,
    error-handling, profiling, thread-yield, and configuration-access
    operations out of allocator core code.  (@guangli-dai: c4158aca,
    c8e2e013, ...)

Portability improvements:
  - Replace the `std::__throw_bad_alloc` call with standard C++ (#2900).
    (@lexprfuncall: 1a15fe33)
  - Make `arena_s` use a flexible array member (`bin_t all_bins[]`) for C99
    or newer.  (@grueninger: 300b58b4)
  - Fix rdtscp detection with `--with-lg-vaddr`.  (@xinydev: e8a0d2b4)
  - Fix `malloc_getcpu` on macOS to read the current CPU number correctly.
    (@algunenano: 5aabbc87)
  - Use `CLOCK_MONOTONIC` for background-thread sleep to prevent
    clock-rollback stalls, and detect monotonic-condvar support at configure
    time.  (@antonio2368: ebacec3a, 8361239b)
  - Fix compilation warnings on macOS.  (@gctony: abb0a8a0)
  - Fix thread-exit TSD cleanup on MinGW builds.  (@gctony: 1e923170)
  - Fix GCC 16 build warnings by removing `-Wpedantic` violations in macro
    and function syntax and explicitly NUL-terminating profiling thread-name
    copies to resolve `-Wstringop-truncation`.  (@grueninger: 5acdcee6,
    c22d929a, @jasonangelov: 6a245e02)
  - Parse PID-namespace symlinks without glibc-dependent `strtok`/`atol`,
    and return identifiers as `uint64_t`.  (@guangli-dai: 278d90a5)

Status:

Vendor Tag:     JASONE
Release Tags:   jemalloc-5-4-0
                
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/configure
U src/external/bsd/jemalloc/dist/VERSION
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
U 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
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/internal/arena.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/arena_decay_constants.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/arena_inlines.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/arena_stats.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/arenas_management.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/assert.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/atomic.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/atomic_c11.h
U 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
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/background_thread.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/background_thread_inlines.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
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/bin_inlines.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/bin_stats.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/cache_bin.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/buf_writer.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/ckh.h
U 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
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/deferral.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
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/hash.h
C src/external/bsd/jemalloc/dist/include/jemalloc/internal/hpa.h
U 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
U 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
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_fork.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_init.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
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_c.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_internal_macros.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_internal_overrides.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
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_probe.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_probe_custom.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/jemalloc_probe_stap.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/large.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/lockedint.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/log.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/malloc_dispatch.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/malloc_dispatch_inlines.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
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os.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/peak.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/peak_event.h
U 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
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/prof.h
C src/external/bsd/jemalloc/dist/include/jemalloc/internal/prof_data.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
C src/external/bsd/jemalloc/dist/include/jemalloc/internal/prof_sys.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
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/ql.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/qr.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/quantum.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/rb.h
U 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
U 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/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
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/stats_internal.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/sz.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/tcache.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/tcache_inlines.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/tcache_ncached_target.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
U 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
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/tsd_binshards.h
U src/external/bsd/jemalloc/dist/include/jemalloc/internal/tsd_generic.h
U 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
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/tsd_tls_addr.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/os/cond.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/cpu.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/detect.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/error.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/file.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/fmt.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/mutex.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/overcommit.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/proc_maps.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/process.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/sigmask.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/time.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/vm.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/darwin/cpu.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/darwin/mutex.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/darwin/proc_maps.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/freebsd/overcommit.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/freebsd/proc_maps.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/linux/overcommit.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/posix/cond.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/posix/cpu.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/posix/error.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/posix/file.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/posix/fmt.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/posix/mutex.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/posix/overcommit.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/posix/proc_maps.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/posix/process.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/posix/sigmask.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/posix/time.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/posix/vm.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/windows/cpu.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/windows/error.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/windows/file.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/windows/fmt.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/windows/mutex.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/windows/overcommit.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/windows/proc_maps.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/windows/process.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/windows/time.h
N src/external/bsd/jemalloc/dist/include/jemalloc/internal/os/windows/vm.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
U src/external/bsd/jemalloc/dist/msvc/jemalloc_vc2019.sln
U 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
U src/external/bsd/jemalloc/dist/msvc/projects/vc2019/jemalloc/jemalloc.vcxproj
U src/external/bsd/jemalloc/dist/msvc/projects/vc2019/jemalloc/jemalloc.vcxproj.filters
U src/external/bsd/jemalloc/dist/msvc/projects/vc2019/test_threads/test_threads.vcxproj
U src/external/bsd/jemalloc/dist/msvc/projects/vc2019/test_threads/test_threads.vcxproj.filters
U src/external/bsd/jemalloc/dist/msvc/projects/vc2022/jemalloc/jemalloc.vcxproj
U src/external/bsd/jemalloc/dist/msvc/projects/vc2022/jemalloc/jemalloc.vcxproj.filters
U src/external/bsd/jemalloc/dist/msvc/projects/vc2022/test_threads/test_threads.vcxproj
U 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
U src/external/bsd/jemalloc/dist/scripts/README_GH_ACTIONS.md
U src/external/bsd/jemalloc/dist/scripts/check-formatting.sh
U src/external/bsd/jemalloc/dist/scripts/check_trailing_whitespace.sh
U src/external/bsd/jemalloc/dist/scripts/gen_gh_actions.py
N src/external/bsd/jemalloc/dist/scripts/gen_header_dep_graph.sh
U src/external/bsd/jemalloc/dist/scripts/gen_run_tests.py
U src/external/bsd/jemalloc/dist/scripts/gen_travis.py
U 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
N src/external/bsd/jemalloc/dist/src/arenas_management.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
C src/external/bsd/jemalloc/dist/src/cache_bin.c
C src/external/bsd/jemalloc/dist/src/ckh.c
C 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/hpa.c
U src/external/bsd/jemalloc/dist/src/hpa_central.c
U src/external/bsd/jemalloc/dist/src/hpa_hooks.c
U 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
N src/external/bsd/jemalloc/dist/src/jemalloc_fork.c
N src/external/bsd/jemalloc/dist/src/jemalloc_init.c
U src/external/bsd/jemalloc/dist/src/large.c
U src/external/bsd/jemalloc/dist/src/log.c
N src/external/bsd/jemalloc/dist/src/malloc_dispatch.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
U src/external/bsd/jemalloc/dist/src/psset.c
C src/external/bsd/jemalloc/dist/src/prof_recent.c
U src/external/bsd/jemalloc/dist/src/prof_stats.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
C src/external/bsd/jemalloc/dist/src/thread_event.c
C 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
U 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
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
N src/external/bsd/jemalloc/dist/test/include/test/hpa.h
N src/external/bsd/jemalloc/dist/test/include/test/hpdata.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
N src/external/bsd/jemalloc/dist/test/include/test/prof_data.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
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
N src/external/bsd/jemalloc/dist/test/integration/free_sized.c
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
N src/external/bsd/jemalloc/dist/test/integration/tcache_fiber_migration.c
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
N src/external/bsd/jemalloc/dist/test/integration/cpp/failing_new.cpp
N src/external/bsd/jemalloc/dist/test/integration/cpp/failing_new.sh
N src/external/bsd/jemalloc/dist/test/integration/cpp/infallible_new.cpp
N src/external/bsd/jemalloc/dist/test/integration/cpp/infallible_new.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/fill_flush.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
U src/external/bsd/jemalloc/dist/test/stress/cpp/microbench.cpp
U src/external/bsd/jemalloc/dist/test/stress/pa/README.md
U src/external/bsd/jemalloc/dist/test/stress/pa/pa_data_preprocessor.cpp
U 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_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
N src/external/bsd/jemalloc/dist/test/unit/arenas_management.c
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
U 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/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
U src/external/bsd/jemalloc/dist/test/unit/conf.c
U src/external/bsd/jemalloc/dist/test/unit/conf_init_0.c
U src/external/bsd/jemalloc/dist/test/unit/decay.c
U src/external/bsd/jemalloc/dist/test/unit/conf_init_1.c
U src/external/bsd/jemalloc/dist/test/unit/conf_init_confirm.c
U 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/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
N src/external/bsd/jemalloc/dist/test/unit/emap.c
U src/external/bsd/jemalloc/dist/test/unit/emitter.c
N src/external/bsd/jemalloc/dist/test/unit/eset.c
N src/external/bsd/jemalloc/dist/test/unit/extent_alloc_flags.c
N src/external/bsd/jemalloc/dist/test/unit/extent_dss.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/hpa.c
U 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_central.c
N src/external/bsd/jemalloc/dist/test/unit/hpa_pageslab_packing.c
U src/external/bsd/jemalloc/dist/test/unit/hpa_sec_integration.c
U src/external/bsd/jemalloc/dist/test/unit/hpa_sec_integration.sh
U src/external/bsd/jemalloc/dist/test/unit/hpa_thp_always.c
U src/external/bsd/jemalloc/dist/test/unit/hpa_thp_always.sh
U src/external/bsd/jemalloc/dist/test/unit/hpa_vectorized_madvise.c
U src/external/bsd/jemalloc/dist/test/unit/hpa_vectorized_madvise.sh
U src/external/bsd/jemalloc/dist/test/unit/hpa_vectorized_madvise_large_batch.c
U 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/jemalloc_init.c
U 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
U 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
N src/external/bsd/jemalloc/dist/test/unit/malloc_dispatch.c
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
U 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
N src/external/bsd/jemalloc/dist/test/unit/pac.c
N src/external/bsd/jemalloc/dist/test/unit/pac_decay.c
N src/external/bsd/jemalloc/dist/test/unit/pac_decay.sh
N src/external/bsd/jemalloc/dist/test/unit/pac_sec_integration.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
N src/external/bsd/jemalloc/dist/test/unit/percpu_arena_resume.c
N src/external/bsd/jemalloc/dist/test/unit/percpu_arena_resume.sh
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_tctx.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
U src/external/bsd/jemalloc/dist/test/unit/prof_small.c
U 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.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
N src/external/bsd/jemalloc/dist/test/unit/san_prof.c
N src/external/bsd/jemalloc/dist/test/unit/san_prof.sh
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/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
U 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_gc.c
U 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
N src/external/bsd/jemalloc/dist/test/unit/tcache_ncached_target.c
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

53 conflicts created by this import.
Use the following command to help the merge:

        cvs checkout -jJASONE:yesterday -jJASONE src/external/bsd/jemalloc/dist





Home | Main Index | Thread Index | Old Index