$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] [asio] reopening of serial port fails - why?
From: Markus Werle (numerical.simulation_at_[hidden])
Date: 2009-03-06 04:57:28
Bill Somerville <bill <at> classdesign.com> writes:
> You need to call reset() on the io_service instance before you can call
> run() for a second time.
I tried this:
while (true) // PROBLEM: reentering this loop fails - why?
{
io_service.reset();
boost::thread t(boost::bind(&boost::asio::io_service::run, &io_service));
[...]
Now the reconnection does not succeed either and
after some tries I obtain an invalid file handle error.
I guess I am missing some fundamental thing with asio ...
Markus