mirror of
https://github.com/PabloMK7/citra.git
synced 2025-10-11 20:10:03 +00:00
Map MappedBuffer guard pages in a single operation. (#7158)
This commit is contained in:
parent
f9bbae81aa
commit
3b31720c4d
2 changed files with 21 additions and 19 deletions
|
@ -26,7 +26,6 @@ struct MappedBufferContext {
|
|||
VAddr target_address;
|
||||
|
||||
std::shared_ptr<BackingMem> buffer;
|
||||
std::shared_ptr<BackingMem> reserve_buffer;
|
||||
|
||||
private:
|
||||
template <class Archive>
|
||||
|
@ -36,7 +35,6 @@ private:
|
|||
ar& source_address;
|
||||
ar& target_address;
|
||||
ar& buffer;
|
||||
ar& reserve_buffer;
|
||||
}
|
||||
friend class boost::serialization::access;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue