Files
epics-base/src/ca/netReadNotifyIO_IL.h
Jeff Hill 910b93de18 installed
2000-06-29 00:40:57 +00:00

28 lines
659 B
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 Jeffrey O. Hill
* johill@lanl.gov
* 505 665 1831
*/
inline void * netReadNotifyIO::operator new (size_t size)
{
return netReadNotifyIO::freeList.allocate (size);
}
inline void netReadNotifyIO::operator delete (void *pCadaver, size_t size)
{
netReadNotifyIO::freeList.release (pCadaver,size);
}