diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-02-07 16:15:41 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2022-02-09 14:44:42 -0500 |
commit | 377bf5d06c22a2332aadd34c90f0c76642aceb32 (patch) | |
tree | 6f8d86b3408a32179d3ec24e66f4518f1639fc95 | |
parent | 1dbe5b2a97c41b3f24a48372ba25faeae08e8cd6 (diff) | |
download | haskell-377bf5d06c22a2332aadd34c90f0c76642aceb32.tar.gz |
rts: Rename MemoryMap.[ch] -> ReportMemoryMap.[ch]
-rw-r--r-- | rts/Linker.c | 2 | ||||
-rw-r--r-- | rts/ReportMemoryMap.c (renamed from rts/MemoryMap.c) | 2 | ||||
-rw-r--r-- | rts/ReportMemoryMap.h (renamed from rts/MemoryMap.h) | 0 | ||||
-rw-r--r-- | rts/linker/M32Alloc.c | 2 | ||||
-rw-r--r-- | rts/rts.cabal.in | 2 |
5 files changed, 4 insertions, 4 deletions
diff --git a/rts/Linker.c b/rts/Linker.c index 0b24a49979..8ac529465b 100644 --- a/rts/Linker.c +++ b/rts/Linker.c @@ -33,7 +33,7 @@ #include "linker/SymbolExtras.h" #include "PathUtils.h" #include "CheckUnload.h" // createOCSectionIndices -#include "MemoryMap.h" +#include "ReportMemoryMap.h" #if !defined(mingw32_HOST_OS) #include "posix/Signals.h" diff --git a/rts/MemoryMap.c b/rts/ReportMemoryMap.c index 93c9bc53df..c5e7a92c4d 100644 --- a/rts/MemoryMap.c +++ b/rts/ReportMemoryMap.c @@ -21,7 +21,7 @@ #include <mach/vm_statistics.h> #endif -#include "MemoryMap.h" +#include "ReportMemoryMap.h" #if defined(mingw32_HOST_OS) diff --git a/rts/MemoryMap.h b/rts/ReportMemoryMap.h index 7d2c4a58b1..7d2c4a58b1 100644 --- a/rts/MemoryMap.h +++ b/rts/ReportMemoryMap.h diff --git a/rts/linker/M32Alloc.c b/rts/linker/M32Alloc.c index c09662ed24..2c3b1b48fb 100644 --- a/rts/linker/M32Alloc.c +++ b/rts/linker/M32Alloc.c @@ -11,7 +11,7 @@ #include "RtsUtils.h" #include "linker/M32Alloc.h" #include "LinkerInternals.h" -#include "MemoryMap.h" +#include "ReportMemoryMap.h" #include <inttypes.h> #include <stdlib.h> diff --git a/rts/rts.cabal.in b/rts/rts.cabal.in index 49a10b478f..b9412327ed 100644 --- a/rts/rts.cabal.in +++ b/rts/rts.cabal.in @@ -489,7 +489,7 @@ library Libdw.c LibdwPool.c Linker.c - MemoryMap.c + ReportMemoryMap.c Messages.c OldARMAtomic.c PathUtils.c |