From 43e0d865faa932b980580a79a87d5ea464e9545c Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 24 Aug 2018 21:43:32 -0400 Subject: core: Namespace all code in the arm subdirectory under the Core namespace Gets all of these types and interfaces out of the global namespace. --- src/core/arm/exclusive_monitor.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/core/arm/exclusive_monitor.h') diff --git a/src/core/arm/exclusive_monitor.h b/src/core/arm/exclusive_monitor.h index 13671ed7a..6f9b51573 100644 --- a/src/core/arm/exclusive_monitor.h +++ b/src/core/arm/exclusive_monitor.h @@ -6,6 +6,8 @@ #include "common/common_types.h" +namespace Core { + class ExclusiveMonitor { public: virtual ~ExclusiveMonitor(); @@ -19,3 +21,5 @@ public: virtual bool ExclusiveWrite64(size_t core_index, VAddr vaddr, u64 value) = 0; virtual bool ExclusiveWrite128(size_t core_index, VAddr vaddr, u128 value) = 0; }; + +} // namespace Core -- cgit v1.2.3