Serialize geometry_pipeline

This commit is contained in:
Hamish Milne 2019-12-22 15:53:04 +00:00 committed by zhupengfei
parent acc89b2251
commit c284192a87
6 changed files with 144 additions and 13 deletions

View file

@ -119,7 +119,8 @@ void KernelSystem::serialize(Archive& ar, const unsigned int file_version)
ar & current_process;
ar & *thread_manager.get();
ar & *config_mem_handler.get();
ar & *shared_page_handler.get();
// Shared page data is read-only at the moment, so doesn't need serializing
//ar & *shared_page_handler.get();
}
SERIALIZE_IMPL(KernelSystem)