diff options
author | David Goldblatt <davidgoldblatt@fb.com> | 2019-12-04 17:44:59 (GMT) |
---|---|---|
committer | David Goldblatt <davidtgoldblatt@gmail.com> | 2019-12-20 18:18:40 (GMT) |
commit | 403f2d1664acfae920e8e6ce51e2695d826a0628 (patch) | |
tree | b7a774e4f3d923a71d47d885898b9c70e9a03b07 /msvc | |
parent | 92a511d385d1a256a42c6bf8cfc3dd9adb1f5217 (diff) | |
download | jemalloc-403f2d1664acfae920e8e6ce51e2695d826a0628.zip jemalloc-403f2d1664acfae920e8e6ce51e2695d826a0628.tar.gz jemalloc-403f2d1664acfae920e8e6ce51e2695d826a0628.tar.bz2 |
Extents: Split out introspection functionality.
This isn't really part of the core extent allocation facilities. Especially as
this module grows, having it in its own place may come in handy.
Diffstat (limited to 'msvc')
-rw-r--r-- | msvc/projects/vc2015/jemalloc/jemalloc.vcxproj | 1 | ||||
-rw-r--r-- | msvc/projects/vc2017/jemalloc/jemalloc.vcxproj | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj b/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj index 4118b91..f5069d3 100644 --- a/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj +++ b/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj @@ -52,6 +52,7 @@ <ClCompile Include="..\..\..\..\src\extent_mmap.c" /> <ClCompile Include="..\..\..\..\src\hash.c" /> <ClCompile Include="..\..\..\..\src\hook.c" /> + <ClCompile Include="..\..\..\..\src\inspect.c" /> <ClCompile Include="..\..\..\..\src\jemalloc.c" /> <ClCompile Include="..\..\..\..\src\large.c" /> <ClCompile Include="..\..\..\..\src\log.c" /> diff --git a/msvc/projects/vc2017/jemalloc/jemalloc.vcxproj b/msvc/projects/vc2017/jemalloc/jemalloc.vcxproj index ed3b524..19e72d4 100644 --- a/msvc/projects/vc2017/jemalloc/jemalloc.vcxproj +++ b/msvc/projects/vc2017/jemalloc/jemalloc.vcxproj @@ -52,6 +52,7 @@ <ClCompile Include="..\..\..\..\src\extent_mmap.c" /> <ClCompile Include="..\..\..\..\src\hash.c" /> <ClCompile Include="..\..\..\..\src\hook.c" /> + <ClCompile Include="..\..\..\..\src\inspect.c" /> <ClCompile Include="..\..\..\..\src\jemalloc.c" /> <ClCompile Include="..\..\..\..\src\large.c" /> <ClCompile Include="..\..\..\..\src\log.c" /> |