diff options
author | Ryan Libby <rlibby@FreeBSD.org> | 2017-08-08 05:00:22 (GMT) |
---|---|---|
committer | David Goldblatt <davidtgoldblatt@gmail.com> | 2017-08-08 17:30:21 (GMT) |
commit | 048c6679cd0ef1500d0609dce48fcd823d15d93b (patch) | |
tree | 5c59c73bb2de7e11b7f71560064241c4f784e608 /Makefile.in | |
parent | 1ab2ab294c8f29a6f314f3ff30fbf4cdb2f01af6 (diff) | |
download | jemalloc-048c6679cd0ef1500d0609dce48fcd823d15d93b.zip jemalloc-048c6679cd0ef1500d0609dce48fcd823d15d93b.tar.gz jemalloc-048c6679cd0ef1500d0609dce48fcd823d15d93b.tar.bz2 |
Remove external linkage for spin_adaptive
The external linkage for spin_adaptive was not used, and the inline
declaration of spin_adaptive that was used caused a probem on FreeBSD
where CPU_SPINWAIT is implemented as a call to a static procedure for
x86 architectures.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 6e3424f..0698633 100644 --- a/Makefile.in +++ b/Makefile.in @@ -112,7 +112,6 @@ C_SRCS := $(srcroot)src/jemalloc.c \ $(srcroot)src/prof.c \ $(srcroot)src/rtree.c \ $(srcroot)src/stats.c \ - $(srcroot)src/spin.c \ $(srcroot)src/sz.c \ $(srcroot)src/tcache.c \ $(srcroot)src/ticker.c \ |