diff --git a/documentation/pvDataCpp.html b/documentation/pvDataCpp.html index 0edca05..5e63a47 100644 --- a/documentation/pvDataCpp.html +++ b/documentation/pvDataCpp.html @@ -2906,7 +2906,7 @@ PVDataCreate.

Allows messages to be sent to a requester.
serialize.h
Support for serializing objects.
-
showConstructDestruct.h
+
CDRMonitor.h
Provides support monitoring memory usage for objects of a class.
status.h
A way to pass status information to a client.
diff --git a/pvDataApp/Makefile b/pvDataApp/Makefile index 8e3fcca..54de4b1 100644 --- a/pvDataApp/Makefile +++ b/pvDataApp/Makefile @@ -18,7 +18,7 @@ INC += serializeHelper.h INC += event.h INC += thread.h INC += executor.h -INC += showConstructDestruct.h +INC += CDRMonitor.h INC += timeFunction.h INC += timer.h INC += queueVoid.h @@ -27,7 +27,7 @@ INC += messageQueue.h INC += destroyable.h INC += status.h -LIBSRCS += showConstructDestruct.cpp +LIBSRCS += CDRMonitor.cpp LIBSRCS += byteBuffer.cpp LIBSRCS += bitSet.cpp LIBSRCS += requester.cpp diff --git a/pvDataApp/factory/FieldCreateFactory.cpp b/pvDataApp/factory/FieldCreateFactory.cpp index 0f94a5c..e8164c4 100644 --- a/pvDataApp/factory/FieldCreateFactory.cpp +++ b/pvDataApp/factory/FieldCreateFactory.cpp @@ -12,7 +12,7 @@ #include "pvIntrospect.h" #include "convert.h" #include "factory.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" namespace epics { namespace pvData { diff --git a/pvDataApp/factory/PVAuxInfoImpl.cpp b/pvDataApp/factory/PVAuxInfoImpl.cpp index 8b34258..57f9148 100644 --- a/pvDataApp/factory/PVAuxInfoImpl.cpp +++ b/pvDataApp/factory/PVAuxInfoImpl.cpp @@ -13,7 +13,7 @@ #include "convert.h" #include "factory.h" #include "lock.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" namespace epics { namespace pvData { diff --git a/pvDataApp/factory/PVField.cpp b/pvDataApp/factory/PVField.cpp index fd7d99d..c7b66a9 100644 --- a/pvDataApp/factory/PVField.cpp +++ b/pvDataApp/factory/PVField.cpp @@ -11,7 +11,7 @@ #include "lock.h" #include "pvData.h" #include "factory.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" namespace epics { namespace pvData { diff --git a/pvDataApp/factory/StandardField.cpp b/pvDataApp/factory/StandardField.cpp index 6163149..4b422a9 100644 --- a/pvDataApp/factory/StandardField.cpp +++ b/pvDataApp/factory/StandardField.cpp @@ -12,7 +12,7 @@ #include #include "pvIntrospect.h" #include "standardField.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" namespace epics { namespace pvData { diff --git a/pvDataApp/factory/StandardPVField.cpp b/pvDataApp/factory/StandardPVField.cpp index 2f295cd..1ba7cb1 100644 --- a/pvDataApp/factory/StandardPVField.cpp +++ b/pvDataApp/factory/StandardPVField.cpp @@ -14,7 +14,7 @@ #include "convert.h" #include "standardField.h" #include "standardPVField.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" namespace epics { namespace pvData { diff --git a/pvDataApp/misc/showConstructDestruct.cpp b/pvDataApp/misc/CDRMonitor.cpp similarity index 96% rename from pvDataApp/misc/showConstructDestruct.cpp rename to pvDataApp/misc/CDRMonitor.cpp index aba9c23..7d9c1a4 100644 --- a/pvDataApp/misc/showConstructDestruct.cpp +++ b/pvDataApp/misc/CDRMonitor.cpp @@ -1,4 +1,4 @@ -/* showConstructDestruct.cpp */ +/* CDRMonitor.cpp */ /** * Copyright - See the COPYRIGHT that is included with this distribution. * EPICS pvDataCPP is distributed subject to a Software License Agreement found @@ -17,7 +17,7 @@ #include "lock.h" #include "pvType.h" #include "linkedList.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" namespace epics { namespace pvData { diff --git a/pvDataApp/misc/showConstructDestruct.h b/pvDataApp/misc/CDRMonitor.h similarity index 98% rename from pvDataApp/misc/showConstructDestruct.h rename to pvDataApp/misc/CDRMonitor.h index 74ed935..cd3feb1 100644 --- a/pvDataApp/misc/showConstructDestruct.h +++ b/pvDataApp/misc/CDRMonitor.h @@ -1,4 +1,4 @@ -/* showConstructDestruct.h */ +/* CDRMonitor.h */ /** * Copyright - See the COPYRIGHT that is included with this distribution. * EPICS pvDataCPP is distributed subject to a Software License Agreement found diff --git a/pvDataApp/misc/StatusCreateFactory.cpp b/pvDataApp/misc/StatusCreateFactory.cpp index 8bd33d2..84cc59c 100644 --- a/pvDataApp/misc/StatusCreateFactory.cpp +++ b/pvDataApp/misc/StatusCreateFactory.cpp @@ -11,7 +11,7 @@ #include "lock.h" #include "factory.h" #include "byteBuffer.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" #include "status.h" #include "serializeHelper.h" diff --git a/pvDataApp/misc/bitSet.cpp b/pvDataApp/misc/bitSet.cpp index faff8d7..a4cb396 100644 --- a/pvDataApp/misc/bitSet.cpp +++ b/pvDataApp/misc/bitSet.cpp @@ -8,7 +8,7 @@ #include "stdio.h" #include "bitSet.h" #include "lock.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" #include "serializeHelper.h" namespace epics { namespace pvData { diff --git a/pvDataApp/misc/event.cpp b/pvDataApp/misc/event.cpp index 48fe670..0ecb649 100644 --- a/pvDataApp/misc/event.cpp +++ b/pvDataApp/misc/event.cpp @@ -20,7 +20,7 @@ #include "pvType.h" #include "lock.h" #include "event.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" namespace epics { namespace pvData { diff --git a/pvDataApp/misc/executor.cpp b/pvDataApp/misc/executor.cpp index f0dbfce..5e44b8d 100644 --- a/pvDataApp/misc/executor.cpp +++ b/pvDataApp/misc/executor.cpp @@ -17,7 +17,7 @@ #include "thread.h" #include "event.h" #include "executor.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" namespace epics { namespace pvData { diff --git a/pvDataApp/misc/linkedListVoid.cpp b/pvDataApp/misc/linkedListVoid.cpp index 07374ca..a94c6b8 100644 --- a/pvDataApp/misc/linkedListVoid.cpp +++ b/pvDataApp/misc/linkedListVoid.cpp @@ -14,7 +14,7 @@ #include "lock.h" #include "pvType.h" #include "linkedListVoid.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" namespace epics { namespace pvData { diff --git a/pvDataApp/misc/messageQueue.cpp b/pvDataApp/misc/messageQueue.cpp index 7a489a2..e2dc4bf 100644 --- a/pvDataApp/misc/messageQueue.cpp +++ b/pvDataApp/misc/messageQueue.cpp @@ -15,7 +15,7 @@ #include "lock.h" #include "requester.h" #include "noDefaultMethods.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" #include "queue.h" #include "messageQueue.h" diff --git a/pvDataApp/misc/queueVoid.cpp b/pvDataApp/misc/queueVoid.cpp index 85c1f64..c263758 100644 --- a/pvDataApp/misc/queueVoid.cpp +++ b/pvDataApp/misc/queueVoid.cpp @@ -14,7 +14,7 @@ #include "lock.h" #include "pvType.h" #include "queueVoid.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" namespace epics { namespace pvData { diff --git a/pvDataApp/misc/thread.cpp b/pvDataApp/misc/thread.cpp index 4e97430..587ec55 100644 --- a/pvDataApp/misc/thread.cpp +++ b/pvDataApp/misc/thread.cpp @@ -18,7 +18,7 @@ #include "event.h" #include "thread.h" #include "linkedList.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" namespace epics { namespace pvData { diff --git a/pvDataApp/misc/timer.cpp b/pvDataApp/misc/timer.cpp index 554128e..dd5483f 100644 --- a/pvDataApp/misc/timer.cpp +++ b/pvDataApp/misc/timer.cpp @@ -14,7 +14,7 @@ #include "pvType.h" #include "lock.h" #include "noDefaultMethods.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" #include "linkedList.h" #include "thread.h" #include "timeStamp.h" diff --git a/testApp/misc/testBitSet.cpp b/testApp/misc/testBitSet.cpp index 68504b5..372689e 100644 --- a/testApp/misc/testBitSet.cpp +++ b/testApp/misc/testBitSet.cpp @@ -12,7 +12,7 @@ #include #include #include -#include +#include #include #include diff --git a/testApp/misc/testLinkedList.cpp b/testApp/misc/testLinkedList.cpp index ee00fc0..5f9e00e 100644 --- a/testApp/misc/testLinkedList.cpp +++ b/testApp/misc/testLinkedList.cpp @@ -23,7 +23,7 @@ #include "lock.h" #include "timeStamp.h" #include "linkedList.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" using namespace epics::pvData; diff --git a/testApp/misc/testMessageQueue.cpp b/testApp/misc/testMessageQueue.cpp index badf0dd..4acb81d 100644 --- a/testApp/misc/testMessageQueue.cpp +++ b/testApp/misc/testMessageQueue.cpp @@ -23,7 +23,7 @@ #include "timeStamp.h" #include "requester.h" #include "messageQueue.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" #include "event.h" #include "thread.h" #include "executor.h" diff --git a/testApp/misc/testQueue.cpp b/testApp/misc/testQueue.cpp index 98b726b..513d043 100644 --- a/testApp/misc/testQueue.cpp +++ b/testApp/misc/testQueue.cpp @@ -22,7 +22,7 @@ #include "lock.h" #include "timeStamp.h" #include "queue.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" #include "event.h" #include "thread.h" #include "executor.h" diff --git a/testApp/misc/testSerialization.cpp b/testApp/misc/testSerialization.cpp index e1977e1..c284e48 100644 --- a/testApp/misc/testSerialization.cpp +++ b/testApp/misc/testSerialization.cpp @@ -19,7 +19,7 @@ #include "serialize.h" #include "noDefaultMethods.h" #include "byteBuffer.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" #define BYTE_MAX_VALUE 127 #define BYTE_MIN_VALUE -128 diff --git a/testApp/misc/testThread.cpp b/testApp/misc/testThread.cpp index ebbaa83..ce046da 100644 --- a/testApp/misc/testThread.cpp +++ b/testApp/misc/testThread.cpp @@ -23,7 +23,7 @@ #include "event.h" #include "thread.h" #include "executor.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" #include "timeFunction.h" using namespace epics::pvData; diff --git a/testApp/misc/testTimer.cpp b/testApp/misc/testTimer.cpp index 3086bae..f9bff9d 100644 --- a/testApp/misc/testTimer.cpp +++ b/testApp/misc/testTimer.cpp @@ -22,7 +22,7 @@ #include "event.h" #include "timer.h" #include "thread.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" using namespace epics::pvData; diff --git a/testApp/property/testProperty.cpp b/testApp/property/testProperty.cpp index 269a3cb..f9abcfd 100644 --- a/testApp/property/testProperty.cpp +++ b/testApp/property/testProperty.cpp @@ -30,7 +30,7 @@ #include "pvDisplay.h" #include "pvEnumerated.h" #include "pvTimeStamp.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" using namespace epics::pvData; diff --git a/testApp/pv/temp.cpp b/testApp/pv/temp.cpp index 86541c0..e85f9fe 100644 --- a/testApp/pv/temp.cpp +++ b/testApp/pv/temp.cpp @@ -20,7 +20,7 @@ #include "convert.h" #include "standardField.h" #include "standardPVField.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" using namespace epics::pvData; diff --git a/testApp/pv/testIntrospect.cpp b/testApp/pv/testIntrospect.cpp index 112681e..8eced01 100644 --- a/testApp/pv/testIntrospect.cpp +++ b/testApp/pv/testIntrospect.cpp @@ -20,7 +20,7 @@ #include "pvIntrospect.h" #include "pvData.h" #include "standardField.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" using namespace epics::pvData; diff --git a/testApp/pv/testPVAppend.cpp b/testApp/pv/testPVAppend.cpp index 0d8a88f..50e716e 100644 --- a/testApp/pv/testPVAppend.cpp +++ b/testApp/pv/testPVAppend.cpp @@ -21,7 +21,7 @@ #include "convert.h" #include "standardField.h" #include "standardPVField.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" using namespace epics::pvData; diff --git a/testApp/pv/testPVAuxInfo.cpp b/testApp/pv/testPVAuxInfo.cpp index ccb6394..f4913cc 100644 --- a/testApp/pv/testPVAuxInfo.cpp +++ b/testApp/pv/testPVAuxInfo.cpp @@ -21,7 +21,7 @@ #include "convert.h" #include "standardField.h" #include "standardPVField.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" using namespace epics::pvData; diff --git a/testApp/pv/testPVData.cpp b/testApp/pv/testPVData.cpp index 1effa04..d2321a8 100644 --- a/testApp/pv/testPVData.cpp +++ b/testApp/pv/testPVData.cpp @@ -21,7 +21,7 @@ #include "convert.h" #include "standardField.h" #include "standardPVField.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" using namespace epics::pvData; diff --git a/testApp/pv/testPVStructureArray.cpp b/testApp/pv/testPVStructureArray.cpp index d3f44ff..94464d6 100644 --- a/testApp/pv/testPVStructureArray.cpp +++ b/testApp/pv/testPVStructureArray.cpp @@ -20,7 +20,7 @@ #include "pvData.h" #include "standardField.h" #include "standardPVField.h" -#include "showConstructDestruct.h" +#include "CDRMonitor.h" using namespace epics::pvData;