Top "Boost-interprocess" questions

Boost.

How can I achieve something similar to a semaphore using boost in c++?

I noticed that boost does not seem to support semaphores. What's the easiest way to achieve a similar effect?

c++ multithreading boost boost-thread boost-interprocess
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 …

c++ boost-thread boost-interprocess
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 …

c++ performance ipc memory-mapped-files boost-interprocess
Synchronized stored procedure execution in mysql

I have a stored procedure in mysql thats to perform a task that needs to be synchronized such that if …

mysql stored-procedures synchronization locking boost-interprocess
Send complex data structure via boost message queue

I have the following data structure: typedef struct { short id; string name; short age; } person_struct; Using boost message queue, …

boost message-queue boost-interprocess
Shared map with boost::interprocess

I have a simple requirement that might be tough to solve. I did find some leads like this or this …

c++ boost map shared-memory boost-interprocess
Create a shared-memory vector of strings

I am trying to create a class managing a shared-memory vector of (std)strings. typedef boost::interprocess::allocator<std::…

c++ boost shared-memory boost-interprocess
Interprocess reader/writer lock with Boost

This thread is gold when it comes to explaining how to implement reader/writer locks with Boost. It seems relatively …

c++ boost boost-interprocess
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(…

c++ permissions boost-interprocess
Read and remove first (or last) line from txt file without copying

I wanna read and remove the first line from a txt file (without copying, it's a huge file). I've read …

c++ fstream getline stdstring boost-interprocess