1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 <2022> 2023 2024 2025 | Index | 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 <2022> 2023 2024 2025 |
<== Date ==> | <== Thread ==> |
---|
Subject: | Re: odd ASYN behavior |
From: | Ralph Lange via Tech-talk <tech-talk at aps.anl.gov> |
To: | EPICS Tech Talk <tech-talk at aps.anl.gov> |
Date: | Fri, 18 Mar 2022 22:54:51 +0100 |
The problem was that the EPICS callback queue was overflowing. John was getting a lot of these errors:callbackRequest: cbLow ring buffer full
By adding this command just before iocInit() the problem was fixed:callbackSetQueueSize(10000)
This is normally not needed if the IOC is controlling a single TetrAMM. However, John is controlling several TetrAMM devices from the same IOC, and that led to more callbacks than the default queue size could handle.