Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8991047
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T22:38:02+00:00 2026-06-15T22:38:02+00:00

I’m trying to construct a map in shared memory of the following type I

  • 0

I’m trying to construct a map in shared memory of the following type

I create the shared memory region like this :

 managed_shared_memory segment(create_only ,"MyMap"  ,size);       

ShMemAllocator_t alloc_inst (segment.get_segment_manager());

 map =   segment.construct<MyMap_t>("MyMap")      
                             (std::less<int>() 
                             ,alloc_inst); 

The values in the map are as follows:

       typedef pair<MutexType, boost::interprocess::offset_ptr<void> > ValueType ; 

MutexType is itself a structure containing a read and a write mutex (using read_lock and write_lock) ;
defined as follows:

typedef struct  mutex_struct{ 
   sharable_lock<interprocess_mutex> read_lock(interprocess_mutex, defer_lock); 
  scoped_lock<interprocess_mutex> write_lock(interprocess_mutex, defer_lock); 
} MutexType;

“size” is the total size of the map (in terms of objects, so the sum of the data size pointed to by all the void pointers).

How can I ensure that this void* data is also located in this memory segment I created, how do I instantiate it within the existing shared memory region). The reason for doing this is that I want to allocate this large buffer once only but repeatedly removing/adding objects to it (the map models a cache) I have yet to find a way in which multiple objects can be allocated within the same memory segment within a map. Furthermore, seeking to allocate the MutexType pair returns a compilation error stating that no “call” operator is provided.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T22:38:03+00:00Added an answer on June 15, 2026 at 10:38 pm

    You are basically already there. Call whatever object type that you are allocating in shared memory SecondValue_t. Instead of ShMemAllocator_t, define a different interprocess allocator type, say SecondValueAllocator_t, for allocating the SecondValue_t objects. Whenever you want to insert a ValueType object into the map, the second value of the ValueType object is allocated with the SecondValueAllocator_t instance.

    Here is a complete example, partly using the code in my answer for Interprocess reader/writer lock with Boost:

    #include <cstdlib>
    #include <functional>
    #include <iostream>
    #include <string>
    #include <utility>
    
    #include <boost/scope_exit.hpp>
    #include <boost/interprocess/managed_shared_memory.hpp>
    #include <boost/interprocess/allocators/allocator.hpp>
    #include <boost/interprocess/allocators/private_node_allocator.hpp>
    #include <boost/interprocess/containers/map.hpp>
    #include <boost/interprocess/sync/interprocess_upgradable_mutex.hpp>
    #include <boost/interprocess/sync/scoped_lock.hpp>
    #include <boost/interprocess/sync/sharable_lock.hpp>
    #include <boost/interprocess/sync/upgradable_lock.hpp>
    
    #define SHARED_MEMORY_NAME "SO13783012-MyMap"
    
    // https://stackoverflow.com/questions/13783012/map-of-int-void-in-shared-memory-using-boostinterprocess
    
    using namespace boost::interprocess;
    
    typedef int SecondValue_t;
    typedef allocator<SecondValue_t, managed_shared_memory::segment_manager> SecondValueAllocator_t;
    
    typedef struct mutex_struct {
        //...
    } MutexType;
    
    typedef std::pair<MutexType, SecondValueAllocator_t::pointer> ValueType;
    
    typedef map<int, ValueType>::value_type MyMapValueType;
    typedef allocator<MyMapValueType, managed_shared_memory::segment_manager> MyMapEntryAllocator_t;
    typedef map<int, ValueType, std::less<int>, MyMapEntryAllocator_t> MyMap_t;
    
    struct shared_data {
    private:
        typedef boost::interprocess::interprocess_upgradable_mutex upgradable_mutex_type;
    
        mutable upgradable_mutex_type mutex;
        MyMap_t my_map;
    
    public:
        shared_data(const MyMapEntryAllocator_t& alloc)
            : my_map(MyMap_t::key_compare(), alloc)
        {
        }
    
        // Tries to get the mapped value for the given key `k'. If successful, the mapped value is
        // copied into `out' and `true' is returned. Otherwise, returns `false' and does not modify
        // `out'.
        bool try_get(MyMap_t::mapped_type& out, MyMap_t::key_type k) const {
            boost::interprocess::sharable_lock<upgradable_mutex_type> lock(mutex);
            MyMap_t::const_iterator pos = my_map.find(k);
            if (pos != my_map.end()) {
                out = pos->second;
                return true;
            }
            return false;
        }
    
        void put(MyMap_t::key_type k, MyMap_t::mapped_type v) {
            boost::interprocess::scoped_lock<upgradable_mutex_type> lock(mutex);
            my_map.insert(MyMap_t::value_type(my_map.size(), v));
        }
    };
    
    int main(int argc, char *argv[])
    {
        if (argc != 2) {
            std::cerr << "Usage: " << argv[0] << " WHICH\n";
            return EXIT_FAILURE;
        }
    
        const std::string which = argv[1];
    
        if (which == "parent") {
            shared_memory_object::remove(SHARED_MEMORY_NAME);
            BOOST_SCOPE_EXIT(argc) {
                shared_memory_object::remove(SHARED_MEMORY_NAME);
            } BOOST_SCOPE_EXIT_END;
            managed_shared_memory shm(create_only, SHARED_MEMORY_NAME, 65536);
    
            MyMapEntryAllocator_t entry_alloc(shm.get_segment_manager());
            shared_data& d = *shm.construct<shared_data>("theSharedData")(entry_alloc);
    
            SecondValueAllocator_t second_value_alloc(shm.get_segment_manager());
    
            // Insert some test data.
            SecondValueAllocator_t::pointer p;
            p = second_value_alloc.allocate(1);
            second_value_alloc.construct(p, -3);
            d.put(0, std::make_pair(MutexType(), p));
            p = second_value_alloc.allocate(1);
            second_value_alloc.construct(p, 70);
            d.put(1, std::make_pair(MutexType(), p));
            p = second_value_alloc.allocate(1);
            second_value_alloc.construct(p, -18);
            d.put(2, std::make_pair(MutexType(), p));
            p = second_value_alloc.allocate(1);
            second_value_alloc.construct(p, 44);
            d.put(3, std::make_pair(MutexType(), p));
            p = second_value_alloc.allocate(1);
            second_value_alloc.construct(p, 0);
            d.put(4, std::make_pair(MutexType(), p));
    
            // Go to sleep for a minute - gives us a chance to start a child process.
            sleep(60);
        } else {
            managed_shared_memory shm(open_only, SHARED_MEMORY_NAME);
            std::pair<shared_data *, std::size_t> find_res = shm.find<shared_data>("theSharedData");
            if (!find_res.first) {
                std::cerr << "Failed to find `theSharedData'.\n";
                return EXIT_FAILURE;
            }
            shared_data& d = *find_res.first;
    
            MyMap_t::mapped_type v;
            int i = 0;
            for (; d.try_get(v, i); ++i) {
                std::cout << i << ": " << *v.second << '\n';
            }
    
            // Add an entry.
            srand(time(NULL));
            SecondValueAllocator_t second_value_alloc(shm.get_segment_manager());
            SecondValueAllocator_t::pointer p = second_value_alloc.allocate(1);
            second_value_alloc.construct(p, (rand() % 200) - 100);
            d.put(i, v = std::make_pair(MutexType(), p));
            std::cout << "placed " << *v.second << " into the map.\n";
        }
    
        return EXIT_SUCCESS;
    }
    

    Test it out by starting the parent process first:

    ./SO13783012 parent
    

    Then some children:

    ./SO13783012 child
    

    Sample output:

    > ./SO13783012 child
    0: -3
    1: 70
    2: -18
    3: 44
    4: 0
    placed 5: -63 into the map.
    > ./SO13783012 child
    0: -3
    1: 70
    2: -18
    3: 44
    4: 0
    5: -63
    placed 6: -42 into the map.
    > ./SO13783012 child
    0: -3
    1: 70
    2: -18
    3: 44
    4: 0
    5: -63
    6: -42
    placed 7: -28 into the map.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
Basically, what I'm trying to create is a page of div tags, each has
For some reason, after submitting a string like this Jack’s Spindle from a text
I am trying to render a haml file in a javascript response like so:
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I'm trying to convert HTML to plain text. I get many &\#8217; &\#8220; etc.
I'm trying to create an if statement in PHP that prevents a single post
I am trying to understand how to use SyndicationItem to display feed which is
link Im having trouble converting the html entites into html characters, (&# 8217;) i
this is what i have right now Drawing an RSS feed into the php,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.