/* base/src/dev $Id$ */ /* @(#)devLoSymb.c 1.1 6/4/93 * Device Support for VxWorks Global Symbol Longout Output Records * * * Author: Carl Lionberger * Date: 060893 * * Experimental Physics and Industrial Control System (EPICS) * * Copyright 1991, the Regents of the University of California, * and the University of Chicago Board of Governors. * * This software was produced under U.S. Government contracts: * (W-7405-ENG-36) at the Los Alamos National Laboratory, * and (W-31-109-ENG-38) at Argonne National Laboratory. * * Initial development by: * The Controls and Automation Group (AT-8) * Ground Test Accelerator * Accelerator Technology Division * Los Alamos National Laboratory * * Co-developed with * The Controls and Computing Group * Accelerator Systems Division * Advanced Photon Source * Argonne National Laboratory * * The Control Systems Group * Systems Engineering Department * Lawrence Berkeley Laboratory * * NOTES: * Derived from soft record device support. * Modification Log: * ----------------- * wfl 06-Jun-96 call devSymbFind() to parse PARM field and * look up symbol * anj 14-Oct-96 Changed devSymbFind() parameters. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include static long init_record(); static long write_longout(); /* Create the dset for devLoSymb */ struct { long number; DEVSUPFUN report; DEVSUPFUN init; DEVSUPFUN init_record; DEVSUPFUN get_ioint_info; DEVSUPFUN write_longout; }devLoSymb={ 5, NULL, NULL, init_record, NULL, write_longout}; static long init_record(plongout) struct longoutRecord *plongout; { /* determine address of record value */ if (devSymbFind(plongout->name, &plongout->out, &plongout->dpvt)) { recGblRecordError(S_db_badField,(void *)plongout, "devLoSymb (init_record) Illegal NAME or OUT field"); return(S_db_badField); } return(0); } static long write_longout(plongout) struct longoutRecord *plongout; { struct vxSym *private = (struct vxSym *) plongout->dpvt; int lockKey; if (private) { lockKey = intLock(); *((long *)(*private->ppvar) + private->index) = plongout->val; intUnlock(lockKey); } else return(1); plongout->udf=FALSE; return(0); }