79236478

Date: 2024-11-29 09:25:24
Score: 2.5
Natty:
Report link
#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?

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user28544477