From 7414aec667135e27e607f657675f54b48e1db626 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Mon, 25 Apr 2016 10:31:42 -0400 Subject: [PATCH] Rename Pager -> PageAllocator --- src/SConscript | 2 +- src/memory/{Pager.cc => PageAllocator.cc} | 0 src/memory/{Pager.hh => PageAllocator.hh} | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename src/memory/{Pager.cc => PageAllocator.cc} (100%) rename src/memory/{Pager.hh => PageAllocator.hh} (100%) diff --git a/src/SConscript b/src/SConscript index 4e6cb2e..0797351 100644 --- a/src/SConscript +++ b/src/SConscript @@ -26,7 +26,7 @@ files = [ 'memory/FrameAllocator.cc', 'memory/Memory.cc', - 'memory/Pager.cc', + 'memory/PageAllocator.cc', ] toolchain_bin = Dir(os.environ['POLKA_TOOLCHAIN']).Dir('bin') diff --git a/src/memory/Pager.cc b/src/memory/PageAllocator.cc similarity index 100% rename from src/memory/Pager.cc rename to src/memory/PageAllocator.cc diff --git a/src/memory/Pager.hh b/src/memory/PageAllocator.hh similarity index 100% rename from src/memory/Pager.hh rename to src/memory/PageAllocator.hh