| 844 | } |
| 845 | |
| 846 | void |
| 847 | CB_cmd_cache_clear() |
| 848 | { |
| 849 | if (cacheProcessor.IsCacheEnabled() == CACHE_INITIALIZED) { |
| 850 | Note("CLEAR, succeeded"); |
| 851 | ::exit(0); |
| 852 | } else if (cacheProcessor.IsCacheEnabled() == CACHE_INIT_FAILED) { |
| 853 | Note("unable to open Cache, CLEAR failed"); |
| 854 | ::exit(1); |
| 855 | } |
| 856 | } |
| 857 | |
| 858 | void |
| 859 | CB_cmd_cache_check() |
nothing calls this directly
no test coverage detected