| 986 | /* LRU Cache for Kernels */ |
| 987 | |
| 988 | static void path_cache_kernel_mark_used(const string &path) |
| 989 | { |
| 990 | const std::time_t current_time = std::time(nullptr); |
| 991 | OIIO::Filesystem::last_write_time(path, current_time); |
| 992 | } |
| 993 | |
| 994 | bool path_cache_kernel_exists_and_mark_used(const string &path) |
| 995 | { |
no outgoing calls
no test coverage detected