Skip to content

Commit

Permalink
Update SharedRList.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
msupernaw committed Nov 18, 2023
1 parent 8ff7452 commit 4fd6d8a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion inst/include/SharedRList.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,14 @@ class SharedList : public SharedRObject {
typedef boost::interprocess::allocator<ValueType2, bip::managed_shared_memory::segment_manager> ShmemAllocator3;


typedef std::map<std::string, tuple, std::less<KeyType2>, ShmemAllocator3> MyTupleMap;
typedef std::map<KeyType2, MappedType2, std::less<KeyType2>, ShmemAllocator3> MyTupleMap;

bip::managed_shared_memory segment;
MyTupleMap* tlist_m;





void init(const std::string name) {
this->name = name;
Expand Down

0 comments on commit 4fd6d8a

Please sign in to comment.