diff --git a/Makefile.in b/Makefile.in index cab4e1f1..86a51ccb 100644 --- a/Makefile.in +++ b/Makefile.in @@ -104,9 +104,9 @@ C_SRCS := $(srcroot)src/jemalloc.c \ $(srcroot)src/ckh.c \ $(srcroot)src/ctl.c \ $(srcroot)src/div.c \ + $(srcroot)src/edata.c \ $(srcroot)src/ehooks.c \ $(srcroot)src/eset.c \ - $(srcroot)src/extent.c \ $(srcroot)src/extent2.c \ $(srcroot)src/extent_dss.c \ $(srcroot)src/extent_mmap.c \ diff --git a/include/jemalloc/internal/base_structs.h b/include/jemalloc/internal/base_structs.h index 68e7896e..10978928 100644 --- a/include/jemalloc/internal/base_structs.h +++ b/include/jemalloc/internal/base_structs.h @@ -2,7 +2,7 @@ #define JEMALLOC_INTERNAL_BASE_STRUCTS_H #include "jemalloc/internal/ehooks.h" -#include "jemalloc/internal/extent.h" +#include "jemalloc/internal/edata.h" #include "jemalloc/internal/jemalloc_internal_types.h" #include "jemalloc/internal/mutex.h" #include "jemalloc/internal/sc.h" diff --git a/include/jemalloc/internal/bin.h b/include/jemalloc/internal/bin.h index 92e8122d..8cc7fed0 100644 --- a/include/jemalloc/internal/bin.h +++ b/include/jemalloc/internal/bin.h @@ -3,7 +3,7 @@ #include "jemalloc/internal/bin_stats.h" #include "jemalloc/internal/bin_types.h" -#include "jemalloc/internal/extent.h" +#include "jemalloc/internal/edata.h" #include "jemalloc/internal/mutex.h" #include "jemalloc/internal/sc.h" diff --git a/include/jemalloc/internal/extent.h b/include/jemalloc/internal/edata.h similarity index 100% rename from include/jemalloc/internal/extent.h rename to include/jemalloc/internal/edata.h diff --git a/include/jemalloc/internal/eset.h b/include/jemalloc/internal/eset.h index fae64c8c..833f19c5 100644 --- a/include/jemalloc/internal/eset.h +++ b/include/jemalloc/internal/eset.h @@ -3,7 +3,7 @@ #include "jemalloc/internal/atomic.h" #include "jemalloc/internal/bitmap.h" -#include "jemalloc/internal/extent.h" +#include "jemalloc/internal/edata.h" #include "jemalloc/internal/mutex.h" /* diff --git a/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj b/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj index f5069d38..9dfc36d2 100644 --- a/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj +++ b/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj @@ -44,9 +44,9 @@ + - diff --git a/msvc/projects/vc2017/jemalloc/jemalloc.vcxproj b/msvc/projects/vc2017/jemalloc/jemalloc.vcxproj index 19e72d4f..0ec4d1ee 100644 --- a/msvc/projects/vc2017/jemalloc/jemalloc.vcxproj +++ b/msvc/projects/vc2017/jemalloc/jemalloc.vcxproj @@ -44,9 +44,9 @@ + - diff --git a/src/extent.c b/src/edata.c similarity index 100% rename from src/extent.c rename to src/edata.c