parameter set up functions
| 475 | // **** **** |
| 476 | // *********************************************************************** |
| 477 | static const char *ClockPro_current_params(cache_t *cache, ClockPro_params_t *params) { |
| 478 | static __thread char params_str[128]; |
| 479 | snprintf(params_str, 128, "init-ref=%d\n", params->init_ref); |
| 480 | return params_str; |
| 481 | } |
| 482 | |
| 483 | static void ClockPro_parse_params(cache_t *cache, const char *cache_specific_params) { |
| 484 | ClockPro_params_t *params = (ClockPro_params_t *)(cache->eviction_params); |
no outgoing calls
no test coverage detected