File tree Expand file tree Collapse file tree
libCacheSim/cache/eviction Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -46,10 +46,11 @@ static void BeladySize_remove_obj(cache_t *cache, cache_obj_t *obj);
4646// ***********************************************************************
4747
4848/**
49- * @brief initialize a Belady cache
49+ * @brief initialize a BeladySize cache
5050 *
5151 * @param ccache_params some common cache parameters
52- * @param cache_specific_params Belady specific parameters, should be NULL
52+ * @param cache_specific_params BeladySize specific parameters, see parse_params
53+ * function or use -e "print" with the cachesim binary
5354 */
5455cache_t * BeladySize_init (const common_cache_params_t ccache_params , const char * cache_specific_params ) {
5556 cache_t * cache = cache_struct_init ("BeladySize" , ccache_params , cache_specific_params );
Original file line number Diff line number Diff line change @@ -41,10 +41,10 @@ static bool FIFO_remove(cache_t *cache, const obj_id_t obj_id);
4141// ***********************************************************************
4242
4343/**
44- * @brief initialize a ARC cache
44+ * @brief initialize a FIFO cache
4545 *
4646 * @param ccache_params some common cache parameters
47- * @param cache_specific_params ARC specific parameters, should be NULL
47+ * @param cache_specific_params FIFO specific parameters, should be NULL
4848 */
4949cache_t * FIFO_init (const common_cache_params_t ccache_params ,
5050 const char * cache_specific_params ) {
Original file line number Diff line number Diff line change @@ -95,10 +95,11 @@ bool SLRU_get_debug(cache_t *cache, const request_t *req);
9595// **** ****
9696// ***********************************************************************
9797/**
98- * @brief initialize a LRU cache
98+ * @brief initialize a SLRU cache
9999 *
100100 * @param ccache_params some common cache parameters
101- * @param cache_specific_params LRU specific parameters, should be NULL
101+ * @param cache_specific_params SLRU specific parameters, see parse_params
102+ * function or use -e "print" with the cachesim binary
102103 */
103104cache_t * SLRU_init (const common_cache_params_t ccache_params ,
104105 const char * cache_specific_params ) {
You can’t perform that action at this time.
0 commit comments