Thread function to call ReCachePages.
| 364 | |
| 365 | // Thread function to call ReCachePages. |
| 366 | void* ReCachePagesFunc(void* data) { |
| 367 | DocumentData* document_data = reinterpret_cast<DocumentData*>(data); |
| 368 | document_data->ReCachePages(); |
| 369 | return NULL; |
| 370 | } |
| 371 | |
| 372 | DocumentData::DocumentData(const STRING& name) |
| 373 | : document_name_(name), |
nothing calls this directly
no test coverage detected