EPICS Controls Argonne National Laboratory

Experimental Physics and
Industrial Control System

1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  <20152016  2017  2018  2019  2020  2021  2022  2023  2024  Index 1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  <20152016  2017  2018  2019  2020  2021  2022  2023  2024 
<== Date ==> <== Thread ==>

Subject: Stream Device: infinite loop when remote closes connection
From: [email protected]
To: [email protected], [email protected]
Date: Wed, 25 Nov 2015 20:07:46 +0100 (CET)
Hello all, Dirk,

I've found a bug in StreamDevice asynDriver code. In my case, whenever the remote TCP host closes connection, a thread in EPICS will enter an infinite loop, the connection failure will never be reported, and reconnection will never be attempted. I've tracked it down to this code in AsynDriverInterface.cc:

// now, we can write (called by asynManager)
void AsynDriverInterface::
writeHandler()
{
...
    } while (status != asynTimeout);
...

I observed that the read returns asynError and this loop continues forever. I was able to fix it by changing this line to:

    } while (status != asynTimeout && status != asynError);

Now it appears to be working correctly, the connection error is reported and reconnection works.

Best regards,
Ambroz Bizjak

Replies:
RE: Stream Device: infinite loop when remote closes connection Mark Rivers
RE: Stream Device: infinite loop when remote closes connection Mazanec Tomáš

Navigate by Date:
Prev: RE: Device Support for I2C and GPIO Mark Rivers
Next: RE: Stream Device: infinite loop when remote closes connection Mark Rivers
Index: 1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  <20152016  2017  2018  2019  2020  2021  2022  2023  2024 
Navigate by Thread:
Prev: [Solved] A call to 'assert(dbLockIsInitialized)' Heinz Junkes
Next: RE: Stream Device: infinite loop when remote closes connection Mark Rivers
Index: 1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  <20152016  2017  2018  2019  2020  2021  2022  2023  2024 
ANJ, 16 Dec 2015 Valid HTML 4.01! · Home · News · About · Base · Modules · Extensions · Distributions · Download ·
· Search · EPICS V4 · IRMIS · Talk · Bugs · Documents · Links · Licensing ·