From 1090d527a53efe9052b6b01fb5ce9ca0195a4f56 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 21 Mar 2002 23:39:58 +0000 Subject: [PATCH] removed --- src/db/dbNotifyBlockerIL.h | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 src/db/dbNotifyBlockerIL.h diff --git a/src/db/dbNotifyBlockerIL.h b/src/db/dbNotifyBlockerIL.h deleted file mode 100644 index a3946a012..000000000 --- a/src/db/dbNotifyBlockerIL.h +++ /dev/null @@ -1,28 +0,0 @@ - -/* - * $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 * dbPutNotifyBlocker::operator new ( size_t size ) -{ - epicsAutoMutex locker ( dbPutNotifyBlocker::freeListMutex ); - return dbPutNotifyBlocker::freeList.allocate ( size ); -} - -inline void dbPutNotifyBlocker::operator delete ( void *pCadaver, size_t size ) -{ - epicsAutoMutex locker ( dbPutNotifyBlocker::freeListMutex ); - dbPutNotifyBlocker::freeList.release ( pCadaver, size ); -}