Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r74064 - sandbox/mmap/boost/mmap
From: dsaritz_at_[hidden]
Date: 2011-08-25 18:43:40


Author: psiha
Date: 2011-08-25 18:43:39 EDT (Thu, 25 Aug 2011)
New Revision: 74064
URL: http://svn.boost.org/trac/boost/changeset/74064

Log:
Removed the strict_target_address system hint flag passing target addresses for mappings is not even supported yet.
Text files modified:
   sandbox/mmap/boost/mmap/mapped_view.hpp | 1 -
   sandbox/mmap/boost/mmap/mapped_view.inl | 1 -
   2 files changed, 0 insertions(+), 2 deletions(-)

Modified: sandbox/mmap/boost/mmap/mapped_view.hpp
==============================================================================
--- sandbox/mmap/boost/mmap/mapped_view.hpp (original)
+++ sandbox/mmap/boost/mmap/mapped_view.hpp 2011-08-25 18:43:39 EDT (Thu, 25 Aug 2011)
@@ -71,7 +71,6 @@
 
     struct system_hint
     {
- static unsigned int const strict_target_address ;
         static unsigned int const lock_to_ram ;
         static unsigned int const reserve_page_file_space;
         static unsigned int const precommit ;

Modified: sandbox/mmap/boost/mmap/mapped_view.inl
==============================================================================
--- sandbox/mmap/boost/mmap/mapped_view.inl (original)
+++ sandbox/mmap/boost/mmap/mapped_view.inl 2011-08-25 18:43:39 EDT (Thu, 25 Aug 2011)
@@ -59,7 +59,6 @@
 unsigned int const mapping_flags::share_mode::shared = BOOST_AUX_IO_WIN32_OR_POSIX( 0, MAP_SHARED );
 unsigned int const mapping_flags::share_mode::hidden = BOOST_AUX_IO_WIN32_OR_POSIX( FILE_MAP_COPY, MAP_PRIVATE );
 
-unsigned int const mapping_flags::system_hint::strict_target_address = BOOST_AUX_IO_WIN32_OR_POSIX( 0, MAP_FIXED );
 unsigned int const mapping_flags::system_hint::lock_to_ram = BOOST_AUX_IO_WIN32_OR_POSIX( SEC_COMMIT , BOOST_AUX_MMAP_POSIX_OR_OSX( MAP_LOCKED, 0 ) );
 unsigned int const mapping_flags::system_hint::reserve_page_file_space = BOOST_AUX_IO_WIN32_OR_POSIX( SEC_RESERVE, /*khm#1*/MAP_NORESERVE );
 unsigned int const mapping_flags::system_hint::precommit = BOOST_AUX_IO_WIN32_OR_POSIX( SEC_COMMIT , BOOST_AUX_MMAP_POSIX_OR_OSX( MAP_POPULATE, 0 ) );


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk