installed

This commit is contained in:
Jeff Hill
2000-06-29 00:40:57 +00:00
parent 71f7435760
commit 910b93de18
5 changed files with 192 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
/*
* $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
*/
//
// netWriteNotifyIO inline member functions
//
inline void * netWriteNotifyIO::operator new (size_t size)
{
return netWriteNotifyIO::freeList.allocate (size);
}
inline void netWriteNotifyIO::operator delete (void *pCadaver, size_t size)
{
netWriteNotifyIO::freeList.release (pCadaver,size);
}