parameter set up functions
| 282 | // **** **** |
| 283 | // *********************************************************************** |
| 284 | static const char *Clock_current_params(cache_t *cache, Clock_params_t *params) { |
| 285 | static __thread char params_str[128]; |
| 286 | snprintf(params_str, 128, "n-bit-counter=%d\n", params->n_bit_counter); |
| 287 | |
| 288 | return params_str; |
| 289 | } |
| 290 | |
| 291 | static void Clock_parse_params(cache_t *cache, const char *cache_specific_params) { |
| 292 | Clock_params_t *params = (Clock_params_t *)cache->eviction_params; |
no outgoing calls
no test coverage detected