file_mapping and network failure problem
Hi,
I use boost::interprocess::file_mapping to map certain data files (data
files are on server). Then I use boost::interprocess::mapped_region with
that file-map to access the data. The following is pseudo code:
// file-map is initialized first
file_mapping fileMap(filename);
mapped_region mappedRegion(fileMap);
// later some where else data is read from file
float * ptr = reinterpret_cast
participants (1)
-
Marko Pietarinen