| 211 | } |
| 212 | |
| 213 | int |
| 214 | CacheDisk::openDone(int /* event ATS_UNUSED */, void * /* data ATS_UNUSED */) |
| 215 | { |
| 216 | if (cacheProcessor.start_done) { |
| 217 | SET_HANDLER(&CacheDisk::syncDone); |
| 218 | cacheProcessor.diskInitialized(); |
| 219 | return EVENT_DONE; |
| 220 | } else { |
| 221 | eventProcessor.schedule_in(this, HRTIME_MSECONDS(5), ET_CALL); |
| 222 | return EVENT_CONT; |
| 223 | } |
| 224 | } |
| 225 | |
| 226 | int |
| 227 | CacheDisk::sync() |
nothing calls this directly
no test coverage detected