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  <20132014  2015  2016  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  <20132014  2015  2016  2017  2018  2019  2020  2021  2022  2023  2024 
<== Date ==> <== Thread ==>

Subject: RE: Asyn asynDrvUser interface
From: Mark Rivers <[email protected]>
To: Paul Hamadyk <[email protected]>, "[email protected]" <[email protected]>
Date: Thu, 31 Oct 2013 12:28:49 +0000
Hi Paul,

> If asynDrvUser->destroy hasn't been defined then this clearly causes a
> problem so:
> 1) Should I always be creating a destroy function?

Yes, you must always define a destroy function for the drvUser interface.

The definition of the interface is:

typedef struct  asynDrvUser {
    /*The following do not have to be called via queueRequest callback*/
    asynStatus (*create)(void *drvPvt,asynUser *pasynUser,
        const char *drvInfo, const char **pptypeName,size_t *psize);
    asynStatus (*getType)(void *drvPvt,asynUser *pasynUser,
        const char **pptypeName,size_t *psize);
    asynStatus (*destroy)(void *drvPvt,asynUser *pasynUser);
}asynDrvUser;

If you have registered the drvUser interface then you must implement all 3 functions.  Clients are not required to check that these function pointers are not NULL.

> 2) Why do only ao records with an AsynFloat64 interface and bo records
> with an AsynUInt32Direct interface call disconnect() in their
> initialisation function?

That is definitely an inconsistency and oversight which has been around for a very long time.  The disconnect() function should be called at the end of all of the record initialization functions that call the XXXSyncIO routines.  However, the penalty for not doing so is a very small amount of memory that gets allocated once and never released, so it is not really a problem.  It is not a memory leak that grows, because the record initialization routines are only called once.

Mark


____________________________
From: [email protected] [[email protected]] on behalf of Paul Hamadyk [[email protected]]
Sent: Thursday, October 31, 2013 5:11 AM
To: [email protected]
Subject: Asyn asynDrvUser interface

I have a question about the asynDrvUser interface. I usually only define
a drvUserCreate function in order to set pasynUser->reason, and I set
drvUserDestroy to NULL. This worked until I added the asynFloat64
interface.

I've noticed that initAo() in devAsynFloat64.c calls
"pasynFloat64SyncIO->disconnect();" which calls
"pioPvt->pasynDrvUser->destroy()" and that initBo() in
devAsynUInt32Direct.c calls "pasynUInt32DigitalSyncIO->disconnect();"
which calls "pioPvt->pasynDrvUser->destroy()".

If asynDrvUser->destroy hasn't been defined then this clearly causes a
problem so:
1) Should I always be creating a destroy function?

static asynStatus drvUserDestroy(void *drvPvt, asynUser *pasynUser)
{
    return asynSuccess;
}

2) Why do only ao records with an AsynFloat64 interface and bo records
with an AsynUInt32Direct interface call disconnect() in their
initialisation function?

Thanks,

Paul.



--
This e-mail and any attachments may contain confidential, copyright and or privileged material, and are for the use of the intended addressee only. If you are not the intended addressee or an authorised recipient of the addressee please notify us of receipt by returning the e-mail and do not use, copy, retain, distribute or disclose the information in or attached to the e-mail.
Any opinions expressed within this e-mail are those of the individual and not necessarily of Diamond Light Source Ltd.
Diamond Light Source Ltd. cannot guarantee that this e-mail or any attachments are free from viruses and we cannot accept liability for any damage which you may sustain as a result of software viruses which may be transmitted in or with the message.
Diamond Light Source Limited (company no. 4375679). Registered in England and Wales with its registered office at Diamond House, Harwell Science and Innovation Campus, Didcot, Oxfordshire, OX11 0DE, United Kingdom






References:
EPICS support for USB TMC (Test & Measurement Class) devices -- Release 1.0 Eric Norum
Re: EPICS support for USB TMC (Test & Measurement Class) devices -- Release 1.0 Noboru Yamamoto
Asyn asynDrvUser interface Paul Hamadyk

Navigate by Date:
Prev: Asyn asynDrvUser interface Paul Hamadyk
Next: Re: merge multiple alarms Tito Körner
Index: 1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  <20132014  2015  2016  2017  2018  2019  2020  2021  2022  2023  2024 
Navigate by Thread:
Prev: Asyn asynDrvUser interface Paul Hamadyk
Next: Channel access over wireless? Emmanuel Mayssat
Index: 1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  <20132014  2015  2016  2017  2018  2019  2020  2021  2022  2023  2024 
ANJ, 20 Apr 2015 Valid HTML 4.01! · Home · News · About · Base · Modules · Extensions · Distributions · Download ·
· Search · EPICS V4 · IRMIS · Talk · Bugs · Documents · Links · Licensing ·