* free resources used by this cache * * @param cache */
| 94 | * @param cache |
| 95 | */ |
| 96 | static void Clock_free(cache_t *cache) { |
| 97 | free(cache->eviction_params); |
| 98 | cache_struct_free(cache); |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * @brief this function is the user facing API |
nothing calls this directly
no test coverage detected