summaryrefslogtreecommitdiffstats
path: root/include/framework/util/Configuration.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/framework/util/Configuration.h')
-rw-r--r--include/framework/util/Configuration.h35
1 files changed, 4 insertions, 31 deletions
diff --git a/include/framework/util/Configuration.h b/include/framework/util/Configuration.h
index 4a4524a..f4b0364 100644
--- a/include/framework/util/Configuration.h
+++ b/include/framework/util/Configuration.h
@@ -1,7 +1,7 @@
/*
* include/framework/util/Configuration.h
*
- * Copyright (C) 2023 Douglas B. Rumbaugh <drumbaugh@psu.edu>
+ * Copyright (C) 2023-2024 Douglas B. Rumbaugh <drumbaugh@psu.edu>
*
* Distributed under the Modified BSD License.
*
@@ -13,35 +13,8 @@
namespace de {
-static thread_local size_t sampling_attempts = 0;
-static thread_local size_t sampling_rejections = 0;
-static thread_local size_t deletion_rejections = 0;
-static thread_local size_t bounds_rejections = 0;
-static thread_local size_t tombstone_rejections = 0;
-static thread_local size_t buffer_rejections = 0;
+enum class LayoutPolicy { LEVELING, TEIRING, BSM };
-/*
- * thread_local size_t various_sampling_times go here.
- */
-static thread_local size_t sample_range_time = 0;
-static thread_local size_t alias_time = 0;
-static thread_local size_t alias_query_time = 0;
-static thread_local size_t rejection_check_time = 0;
-static thread_local size_t buffer_sample_time = 0;
-static thread_local size_t memlevel_sample_time = 0;
-static thread_local size_t disklevel_sample_time = 0;
-static thread_local size_t sampling_bailouts = 0;
-
-
-enum class LayoutPolicy {
- LEVELING,
- TEIRING,
- BSM
-};
-
-enum class DeletePolicy {
- TOMBSTONE,
- TAGGING
-};
+enum class DeletePolicy { TOMBSTONE, TAGGING };
-}
+} // namespace de