54 lines
1.2 KiB
C++
54 lines
1.2 KiB
C++
|
|
/* $Id$
|
|
*
|
|
* L O S A L A M O S
|
|
* Los Alamos National Laboratory
|
|
* Los Alamos, New Mexico 87545
|
|
*
|
|
* Copyright, 1986, The Regents of the University of California.
|
|
*
|
|
* Author: Jeff Hill
|
|
*/
|
|
|
|
#include "iocinf.h"
|
|
#include "oldAccess.h"
|
|
#include "oldChannelNotify_IL.h"
|
|
|
|
tsFreeList < struct oldSubscription, 1024 > oldSubscription::freeList;
|
|
epicsMutex oldSubscription::freeListMutex;
|
|
|
|
oldSubscription::~oldSubscription ()
|
|
{
|
|
this->chan.ioCancel ( this->id );
|
|
}
|
|
|
|
void oldSubscription::completion (
|
|
unsigned type, unsigned long count, const void *pData)
|
|
{
|
|
struct event_handler_args args;
|
|
|
|
args.usr = this->pPrivate;
|
|
args.chid = &this->chan;
|
|
args.type = type;
|
|
args.count = count;
|
|
args.status = ECA_NORMAL;
|
|
args.dbr = pData;
|
|
( *this->pFunc ) (args);
|
|
}
|
|
|
|
void oldSubscription::exception (
|
|
int status, const char * /* pContext */,
|
|
unsigned type, unsigned long count )
|
|
{
|
|
struct event_handler_args args;
|
|
|
|
args.usr = this->pPrivate;
|
|
args.chid = &this->chan;
|
|
args.type = type;
|
|
args.count = count;
|
|
args.status = status;
|
|
args.dbr = 0;
|
|
( *this->pFunc ) ( args );
|
|
}
|
|
|