Tagged Questions
Boost.Interprocess is a part of the C++ Boost library. It simplifies the use of common interprocess communication and synchronization mechanisms.
13
votes
7answers
1k views
shared memory, MPI and queuing systems
My unix/windows C++ app is already parallelized using MPI: the job is splitted in N cpus and each chunk is executed in parallel, quite efficient, very good speed scaling, the job is done right.
But ...
9
votes
2answers
590 views
Is boost::interprocess ready for prime time?
I was working on a thread safe queue backed by memory mapped files which utilized boost interprocess fairly heavily. I submitted it for code review and a developer with more years of experience than ...
7
votes
2answers
425 views
C++ allocators, specifically passing constructor arguments to objects allocated with boost::interprocess::cached_adaptive_pool
This is an embarrassing question, but even the well-written documentation provided with boost.interprocess hasn't been enough for me to figure out how to do this.
What I have is a ...
6
votes
2answers
772 views
Is there a difference between boost iostream mapped file and boost interprocess mapped file?
I want to create a mapped binary file into memory; however I am not sure how to create the file to be mapped into the system. I read the documentation several times and realize there are 2 mapped file ...
4
votes
2answers
124 views
Reading Shared Memory from x86 to x64 and vice versa on OSX
If I create a SM from 64 bit application and open it on 32 bit application it fails.
//for 64 bit
shared_memory_object( create_only, "test" , read_write) ;
// for 32 bit
shared_memory_object ...
4
votes
2answers
590 views
boost::interprocess message_queue performance - rather slow?
I need an ultra-fast MQ mechanism, where both sender and receiver are written in C++, on Windows platform.
My current implementation using RCF-C++ for IPC is clocking at around 20,000 msg/sec over ...
4
votes
6answers
489 views
Is boost::interprocess::shared_ptr threadsafe (and interprocess-safe)?
I want to share data between threads, and have it automatically deleted when the last user is done with it. This seems to work, most of the time, using boost::interprocess::shared_ptr in a ...
4
votes
2answers
2k views
Example of how to use boost upgradeable mutexes
I have a multithreaded server application that needs mutex locks over some shared memory.
The shared memory are basically sTL maps etc.
Much of the time I'm just reading from the map.
But, I also ...
4
votes
2answers
190 views
Boost.MultiIndex: Are there way to share object between two processes?
I have a Boost.MultiIndex big array about 10Gb. In order to reduce the reading I thought there should be a way to keep the data in the memory and another client programs will be able to read and ...
3
votes
1answer
238 views
Boost iostream: how to turn ifstream into memory mapped file?
What I want is simple to open file for reading as memory mapped file - in order to access it with much more speed in future (example: we open file read it to end, wait and read it again and again) ...
3
votes
1answer
725 views
Why is creating a ring buffer shared by different processes so hard (in C++), what I am doing wrong?
I am being especially dense about this but it seems I'm missing an important, basic point or something, since what I want to do should be common:
I need to create a fixed-size ring buffer object from ...
3
votes
2answers
1k views
boost interprocess : shared memory and stl types
I have a simple struct :
struct MyType
{
std::string name;
std::string description;
}
and I'm putting it in a shared memory :
managed_shared_memory sharedMemory(open_or_create, "name", ...
3
votes
2answers
711 views
How do I take ownership of an abandoned boost::interprocess::interprocess_mutex?
My scenario: one server and (some clients (though not many). The server can only respond to one client at a time, so they must be queued up. I'm using a mutex (boost::interprocess::interprocess_mutex) ...
2
votes
2answers
62 views
Message passing between two programs
Currently I have two standalone C++ programs, a master and a slave. The master writes some data to shared memory, using boost::interprocess, and then launches the slave, which is able to read from the ...
2
votes
1answer
160 views
boost::unordered_map using boost::interprocess::cached_node_allocator compilation failure
I am trying to create a boost::unordered_map in a boost::interprocess::managed_shared_memory segment. This works fine until I try to change from using boost::interprocess::allocator to ...
2
votes
0answers
275 views
Boost message queue
I have the following boost::interprocess::message_queue related question.
As intended I plan to share a message queue between >= 2 processes. Obviously one of them may crash while inside the message ...
2
votes
2answers
346 views
Looking for simple example of Boost message_queue and serialization usage
Anyone can share small working example of using together boost message_queue and serialization? I want use classes to exchange data between processes but stuck in my research.
2
votes
1answer
200 views
Boost::Interprocess with complex, nested classes
I think I finally have a grasp on the basics of the boost:interprocess library, and I've been using it successfully when dealing with relatively simple classes that contain a few member variables that ...
2
votes
2answers
692 views
Boost::Interprocess Shared Memory Bus Error
I'm using CentOS 5.4 x86_64 and Boost 1.42.0 on a cluster that uses Open-MPI 1.3.3. I'm writing a shared library that uses shared memory to store large amounts of data for multiple processes to use. ...
2
votes
1answer
745 views
Problem creating a circular buffer in shared memory using Boost
I am trying to create a circular buffer in shared memory using Boost circular_buffer and Interprocess libraries. I compiled and ran the the example given in the Interprocess documentation for creating ...
1
vote
1answer
48 views
Setting permission for shared memory created by boost
We open a boost shared memory that was created by another process like this
boost::interprocess::managed_shared_memory segment(boost::interprocess::open_only, "SharedMem");
But if the process ...
1
vote
1answer
109 views
Inserting a boost vector inside a boost map in shared memory
This is what i have so far. But this doesnt even compile. What should i do to make it work?
typedef allocator<int, managed_shared_memory::segment_manager> vecAllocator;
typedef vector<int, ...
1
vote
2answers
72 views
boost interprocess map with int and string
I have the following code that saves a map into shared memory using boost interprocess
using namespace boost::interprocess;
//Shared memory front-end that is able to construct objects
...
1
vote
0answers
51 views
Boost.MPI/Boost.Interprocess - how to detect if processes run on same machine?
So I use boost.mpi to run my app on 2 machine in a cluster, each has 8 cores.so I get 16 processes startedd. I wonder how my processes can find out on which of my clusters thay are ran? How thay ...
1
vote
1answer
155 views
Too much CPU consumption by boost scoped_lock
I have some code which waits for write operation on Shared Memory.
If no one writes it continues to wait.
Test* Foo::Get()
{
...
1
vote
0answers
47 views
How to communicate beetwen parts of out-proc *.exe COM server?
We have *.exe application which is also out-process COM server.
The main thread is doing some network routine: it receives data packets and puts them into queue.
COM client, VBA for example, uses ...
1
vote
1answer
65 views
slow memory allocation in boost-interprocess
It looks like this:
MyType * pMy = my_segment->construct<MyType>(anonymous_instance)();
my_segment->destroy_ptr(pMy);
Where MyType is some typical struct and my_segment is correctly ...
1
vote
0answers
50 views
How to pin a shared memory segment into physical memory
I use boost::interprocess::managed_shared_memory to load a data structure in shared memory. I need to pin the shared memory segment into physical memory (for example similar to system call mlock for ...
1
vote
1answer
324 views
Boost.Interprocess: How to call and send data to a function from class that is in another process?
So I have created a simple class that works for threads - you can add any void function of any class to a list of subscribed functions of a class that enherits from presented my class:
#include ...
1
vote
0answers
192 views
Thread notification when boost::interprocess::mapped_region is changed
How can I be notified when the bytes in boost::interprocess::mapped_region is changed by using interprocess_condition.
I have opened a file, and have mapped the specific region correctly. When I poll ...
1
vote
2answers
323 views
How serialize a boost::function to send it in a message_queue
I am actually trying to serialize a boost::function using boost::serialize because I want to share it in a boost::interprocess::message_queue.
I only see one way to do that, it is to use the ...
1
vote
1answer
547 views
Accessing vector element of shared object using boost interprocess
I'm trying to understand how boost interprocess library works.
I have an Equipment class which holds integer values in a vector container.
In parent parent process;
I constructed Equipment object ...
1
vote
0answers
394 views
Boost::Interprocess Container Container Resizing No Default Constructor
After combing through the Boost::Interprocess documentation and Google searches, I think I've found the reason/workaround to my issue. Everything I've found, as I understand it, seems to be hinting ...
1
vote
1answer
462 views
Instantiating class with custom allocator in shared memory
I'm pulling my hair due to the following problem: I am following the example given in boost.interprocess documentation to instantiate a fixed-size ring buffer buffer class that I wrote in shared ...
1
vote
2answers
573 views
problem with memcpy'ing from shared memory in boost.interprocess
This is driving me wild with frustration. I am just trying to create a shared memory buffer class that uses in shared memory created through Boost.Interprocess where I can read/store data. I wrote the ...
1
vote
1answer
985 views
Boost interprocess anonymous condition timed_wait not compilable
I'm wondering what I'm doing wrong... with a sole wait it compiles and runs, but not with a timed_wait:
using boost::interprocess::scoped_lock;
using boost::interprocess::interprocess_mutex;
using ...
1
vote
1answer
281 views
Shared memory and strings: managed?
I have a problem with boost::interprocess::string in shared memory.
When I use a shared_memory_object I can manipulate a structure with different fields, BUT strings (I get a segmentation fault).
...
1
vote
2answers
1k views
Sleep while holding a boost::interprocess::scoped_lock causes it to be never released
I'm doing IPC on Linux using boost::interprocess::shared_memory_object as per the reference (anonymous mutex example).
There's a server process, which creates the shared_memory_object and writes to ...
0
votes
0answers
26 views
Boost interprocess: how to create map<string, string> with custome allocator?
So I faaced map<KeyType, MappedType, std::less<KeyType>, ShmemAllocator> MyMap; from interprocess tutoral I wonder how to make std::string, std::string map?
0
votes
0answers
67 views
Writing to boost::interprocess::vector or map from multiple processes
I'm spec-ing out boost interprocess maps and vectors to share data between processes. I've written a standalone project to test writing to shared memory from two processes.
I'm launching two copies ...
0
votes
2answers
35 views
Boost interprocess vector, creating multiple vector pointers
I want to insert a shared vector into a shared map using the following code:
managed_shared_memory segment(create_only ,"MySharedMemory" ,65536);
typedef allocator<int, ...
0
votes
0answers
72 views
How to safely remove boost::shared_memory_object
I am using a boost::shared_memory_object for IPC. I have a client and server. I use two message queues. One for sending requests to the server and one for receiving replies from the server. It is an ...
0
votes
1answer
138 views
boost interprocess named mutex remains acquired after a crash
I am using a boost::interpocess::scoped_lock using a named_mutex and a timeout; I am running in Linux OS.
During one of my tests I had a crash: since then, everytime I try to run again the ...
0
votes
0answers
96 views
using boost in a C project
I was wondering if there is an easy and provided way to use boost in a C project ? Or do I have to write a wrapper for the functions I need ? Or maybe a third solution, a boost::interprocess ...
0
votes
2answers
127 views
boost::interprocess::basic_string as std::string
I am trying to replace a class method which returns const std::string & with const boost::interprocess::basic_string &. The main challenge I am facing is the incompatibility between the two ...
0
votes
0answers
32 views
interprocess locks and “move” semantics - compile problem
I’m having a problem getting this trivial couple of statements compile on VC9 SP1 (VS2008), specifically the “move” emulation in boost::interprocess using interprocess_upgradable_mutex in conjunction ...
0
votes
1answer
78 views
Does boost::interprocess::named_mutex need to be stored in shared memory?
I want to use boost::interprocess to perform synchronization across multiple processes; in the specific I want to to use boost::interprocessnamed_mutex under Linux OS ( I am using g++ ) .
Do you know ...
0
votes
1answer
248 views
boost::interprocess::shared_memory_object::remove fails
I made some test and I was able to create and remove boost::interprocess::shared_memory_object in a C++/CLI executable without problems. In a C++/CLI dll plugin I'm only able to create the ...
0
votes
1answer
227 views
IPC security named pipes
I wish to use named pipes in my app. Server would be NT service and client is user space app.
I presume that there could be a problem if someone could create application client that lock pipe(or ...
0
votes
1answer
119 views
problem in boost-interprocess library
std::pair<int*, std::size_t> p = managed_shm.find<int>("Integer");
can someone provide me with the definition of this find method.