#include <iostream>
#include <boost/interprocess/ipc/message_queue.hpp>
int main(){
boost::interprocess::message_queue mq(boost::interprocess::open_or_create,"my_queue",100,10);
mq.remove("my_queue");
return 0;
}
I encountered the same problem on the QNX platform, and it kept failing, giving me the error: "boost::interprocess_exception::library_error"
Have you encountered the same problem?