kernel: Add some missing state to process serialization. (#7295)

This commit is contained in:
Steveice10 2023-12-28 08:25:46 -08:00 committed by GitHub
parent 2bb7f89c30
commit 5bcdcffd96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -48,6 +48,8 @@ void Process::serialize(Archive& ar, const unsigned int file_version) {
ar& vm_manager;
ar& memory_used;
ar& memory_region;
ar& holding_memory;
ar& holding_tls_memory;
ar& tls_slots;
}