- Update changelog.

- Fix typo in mapped_region.hpp
This commit is contained in:
Ion Gaztañaga
2020-10-23 14:15:23 +02:00
parent 14c49cae6d
commit 57d125d996
2 changed files with 8 additions and 1 deletions

View File

@@ -6781,6 +6781,13 @@ thank them:
[section:release_notes Release Notes]
[section:release_notes_boost_1_75_00 Boost 1.75 Release]
* Fixed bugs:
* [@https://github.com/boostorg/interprocess/issues/127 GitHub #127 (['"static assertion failure with boost interprocess 1.74 and basic_managed_shared_memory"])].
[endsect]
[section:release_notes_boost_1_74_00 Boost 1.74 Release]
* [*ABI breaking]: Option `BOOST_INTERPROCESS_BOOTSTAMP_IS_SESSION_MANAGER_BASED` is now the default value.

View File

@@ -190,7 +190,7 @@ class mapped_region
//!mapped memory page, accessing that page can trigger a segmentation fault.
//!Depending on the OS, this operation might fail (XSI shared memory), it can decommit storage
//!and free a portion of the virtual address space (e.g.POSIX) or this
//!function can release some physical memory wihout freeing any virtual address space(Windows).
//!function can release some physical memory without freeing any virtual address space(Windows).
//!Returns true on success. Never throws.
bool shrink_by(std::size_t bytes, bool from_back = true);