From bda3a7edb76c9fe3dc21cbe5a0836829b705b407 Mon Sep 17 00:00:00 2001 From: tslil Date: Fri, 29 Jan 2021 17:52:58 -0500 Subject: Purged uninteresting statistics --- include/tt_llcht.c | 3 --- include/tt_llcht.h | 2 -- 2 files changed, 5 deletions(-) (limited to 'include') diff --git a/include/tt_llcht.c b/include/tt_llcht.c index b898b23..c3902af 100644 --- a/include/tt_llcht.c +++ b/include/tt_llcht.c @@ -21,7 +21,6 @@ // Variables // =================================================================== -uint32_t tt_num_cached; static tt_entry_t *table[TT_LLCHT_SIZE+1]; // =================================================================== @@ -76,8 +75,6 @@ int tt_insert(const uint64_t key, const enum TT_FLAG flag, table[idx] = new; } - tt_num_cached++; - return EXIT_SUCCESS; } diff --git a/include/tt_llcht.h b/include/tt_llcht.h index 90b4164..292c93c 100644 --- a/include/tt_llcht.h +++ b/include/tt_llcht.h @@ -44,8 +44,6 @@ typedef struct tt_node_s { #define TT_LLCHT_SIZE ((uint32_t)((1<<19) - 1)) -extern uint32_t tt_num_cached; - // =================================================================== // Methods // =================================================================== -- cgit v1.2.3