Make ellFree() a 1-argument macro, calls ellFree2() with free as freeFunc.

This commit is contained in:
Andrew Johnson
2009-08-28 18:34:38 +00:00
parent f17ac39f29
commit 534ca2c86e
5 changed files with 9 additions and 11 deletions
+2 -3
View File
@@ -3,8 +3,7 @@
* National Laboratory.
* Copyright (c) 2002 The Regents of the University of California, as
* Operator of Los Alamos National Laboratory.
* EPICS BASE Versions 3.13.7
* and higher are distributed subject to a Software License Agreement found
* EPICS BASE is distributed subject to a Software License Agreement found
* in file LICENSE that is included with this distribution.
\*************************************************************************/
/*epicsExit.c*/
@@ -52,7 +51,7 @@ static epicsThreadPrivateId exitPvtPerThread = 0;
static void destroyExitPvt ( exitPvt * pep )
{
ellFree ( &pep->list, free );
ellFree ( &pep->list );
free ( pep );
}