File shared_memory.hxx¶
This file implements the functions from shared_memory.hpp that encapsulate the use of the shared memory using the boost::interprocess package. usage: see demos and unit tests and documentation.
- License:
License BSD-3-Clause
- Author
Vincent Berenz
- Author
Maximilien Naveau (maximilien.naveau@gmail.com)
- Copyright
Copyright (c) 2019, New York University and Max Planck Gesellschaft.
- Date
2019-05-22
-
namespace
shared_memory
All templated types in this namespaces are elementary types: int, double, float, char*, …
Typedefs
-
typedef std::map<std::string, std::unique_ptr<SharedMemorySegment>>
SegmentMap
¶ SegmentMap typedef is a simple short cut to the GLOBAL_SHM_SEGMENTS type.
Functions
-
template<typename
VectorType
, typenameElemType
>
voidset
(const std::string &segment_id, const std::string &object_id, const VectorType &set_)¶
Variables
-
bool
VERBOSE
¶
-
static SegmentMap
GLOBAL_SHM_SEGMENTS
¶ GLOBAL_SHARED_MEMORY_SEGMENT is global variable that acts as a a shared memory manager.
The use of the std::unique_ptr allows to delete the object and re-create at will.
-
typedef std::map<std::string, std::unique_ptr<SharedMemorySegment>>