don't call ClientFactory::stop()

This commit is contained in:
mrkraimer
2016-01-06 10:43:05 -05:00
parent f709e339b1
commit 3e588c8124

View File

@@ -32,10 +32,10 @@ using std::endl;
using namespace epics::pvData;
using namespace epics::pvAccess;
static void pvaClientExitHandler(void* /*pPrivate*/) {
cout << "pvaClientExitHandler\n";
ClientFactory::stop();
}
//static void pvaClientExitHandler(void* /*pPrivate*/) {
//cout << "pvaClientExitHandler\n";
// ClientFactory::stop();
//}
static const iocshFuncDef startPVAClientFuncDef = {
"startPVAClient", 0, 0
@@ -44,7 +44,7 @@ static const iocshFuncDef startPVAClientFuncDef = {
extern "C" void startPVAClient(const iocshArgBuf *args)
{
ClientFactory::start();
epicsAtExit(pvaClientExitHandler, NULL);
// epicsAtExit(pvaClientExitHandler, NULL);
}