summaryrefslogtreecommitdiffstats
path: root/msvc
diff options
context:
space:
mode:
authorRyan Libby <rlibby@FreeBSD.org>2017-08-08 05:00:22 (GMT)
committerDavid Goldblatt <davidtgoldblatt@gmail.com>2017-08-08 17:30:21 (GMT)
commit048c6679cd0ef1500d0609dce48fcd823d15d93b (patch)
tree5c59c73bb2de7e11b7f71560064241c4f784e608 /msvc
parent1ab2ab294c8f29a6f314f3ff30fbf4cdb2f01af6 (diff)
downloadjemalloc-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 'msvc')
-rw-r--r--msvc/projects/vc2015/jemalloc/jemalloc.vcxproj1
-rw-r--r--msvc/projects/vc2015/jemalloc/jemalloc.vcxproj.filters3
2 files changed, 0 insertions, 4 deletions
diff --git a/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj b/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj
index 2addd29..97f892e 100644
--- a/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj
+++ b/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj
@@ -56,7 +56,6 @@
<ClCompile Include="..\..\..\..\src\prng.c" />
<ClCompile Include="..\..\..\..\src\prof.c" />
<ClCompile Include="..\..\..\..\src\rtree.c" />
- <ClCompile Include="..\..\..\..\src\spin.c" />
<ClCompile Include="..\..\..\..\src\stats.c" />
<ClCompile Include="..\..\..\..\src\sz.c" />
<ClCompile Include="..\..\..\..\src\tcache.c" />
diff --git a/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj.filters b/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj.filters
index 4edf09b..d2de135 100644
--- a/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj.filters
+++ b/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj.filters
@@ -70,9 +70,6 @@
<ClCompile Include="..\..\..\..\src\rtree.c">
<Filter>Source Files</Filter>
</ClCompile>
- <ClCompile Include="..\..\..\..\src\spin.c">
- <Filter>Source Files</Filter>
- </ClCompile>
<ClCompile Include="..\..\..\..\src\stats.c">
<Filter>Source Files</Filter>
</ClCompile>