Я использую класс c ++, который инкапсулирует boost :: asio :: io_service .
class IoService {
public:
static IoService& getInstance() {
static IoService instance;
return instance;
}
void start() {
_ioServiceThread = std::thread(&IoService::run, this);
}
void stop() {
_ioService.stop();
_ioServiceThread.join();
}
void run() {
_ioService.run();
}
private:
IoService();
~IoService();
IoService(const IoService& old) = delete;
IoService(const IoService&& old) = delete;
IoService& operator=(const IoService& old) = delete;
IoService& operator=(const IoService&& old) = delete;
boost::asio::io_service _ioService;
std::thread _ioServiceThread;
};
Но когда я вызываю метод stop, программа падает при соединении:
terminate called after throwing an instance of 'std::system_error'
what(): Resource deadlock avoided
Aborted
Как вы думаете?