update for changes to PVData object monitoring

showConstructDestruct.h renamed as CDRMonitor.h
This commit is contained in:
Michael Davidsaver
2011-02-01 07:14:42 -05:00
parent 8fdd51396c
commit 8904298718
9 changed files with 33 additions and 17 deletions
+4 -2
View File
@@ -5,9 +5,10 @@
#include "transportRegistry.h"
#include "introspectionRegistry.h"
#include "showConstructDestruct.h"
#include "CDRMonitor.h"
#include <epicsAssert.h>
#include <epicsExit.h>
#include <iostream>
#include <string>
@@ -145,7 +146,8 @@ int main(int argc, char *argv[])
if(addrArray) delete[] addrArray;
if(transportArrayIn) delete[] transportArrayIn;
if(registry) delete registry;
getShowConstructDestruct()->constuctDestructTotals(stdout);
epicsExitCallAtExits();
CDRMonitor::get().show(stdout);
return 0;
}