mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-04-14 14:41:42 +03:00
Add ehooks module
This commit is contained in:
parent
837119a948
commit
ba8b9ecbcb
5 changed files with 10 additions and 0 deletions
|
|
@ -104,6 +104,7 @@ C_SRCS := $(srcroot)src/jemalloc.c \
|
|||
$(srcroot)src/ckh.c \
|
||||
$(srcroot)src/ctl.c \
|
||||
$(srcroot)src/div.c \
|
||||
$(srcroot)src/ehooks.c \
|
||||
$(srcroot)src/eset.c \
|
||||
$(srcroot)src/extent.c \
|
||||
$(srcroot)src/extent_dss.c \
|
||||
|
|
|
|||
4
include/jemalloc/internal/ehooks.h
Normal file
4
include/jemalloc/internal/ehooks.h
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
#ifndef JEMALLOC_INTERNAL_EHOOKS_H
|
||||
#define JEMALLOC_INTERNAL_EHOOKS_H
|
||||
|
||||
#endif /* JEMALLOC_INTERNAL_EHOOKS_H */
|
||||
|
|
@ -44,6 +44,7 @@
|
|||
<ClCompile Include="..\..\..\..\src\ckh.c" />
|
||||
<ClCompile Include="..\..\..\..\src\ctl.c" />
|
||||
<ClCompile Include="..\..\..\..\src\div.c" />
|
||||
<ClCompile Include="..\..\..\..\src\ehooks.c" />
|
||||
<ClCompile Include="..\..\..\..\src\eset.c" />
|
||||
<ClCompile Include="..\..\..\..\src\extent.c" />
|
||||
<ClCompile Include="..\..\..\..\src\extent_dss.c" />
|
||||
|
|
|
|||
|
|
@ -44,6 +44,7 @@
|
|||
<ClCompile Include="..\..\..\..\src\ckh.c" />
|
||||
<ClCompile Include="..\..\..\..\src\ctl.c" />
|
||||
<ClCompile Include="..\..\..\..\src\div.c" />
|
||||
<ClCompile Include="..\..\..\..\src\ehooks.c" />
|
||||
<ClCompile Include="..\..\..\..\src\eset.c" />
|
||||
<ClCompile Include="..\..\..\..\src\extent.c" />
|
||||
<ClCompile Include="..\..\..\..\src\extent_dss.c" />
|
||||
|
|
|
|||
3
src/ehooks.c
Normal file
3
src/ehooks.c
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
#include "jemalloc/internal/jemalloc_preamble.h"
|
||||
#include "jemalloc/internal/jemalloc_internal_includes.h"
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue