interim commit

This commit is contained in:
Marty Kraimer
2013-06-19 11:07:44 -04:00
parent 81cde9dd6e
commit db4e10e393
3 changed files with 132 additions and 83 deletions

View File

@@ -121,10 +121,12 @@ int main(int argc,char *argv[])
if(str.compare("exit")==0) break;
}
channelProvider->destroy();
channelProvider.reset();
cout << "calling ctx->destroy()" << endl;
ctx->destroy();
ctx.reset();
epicsThreadSleep(1.0);
cout << "calling channelProvider->destroy()" << endl;
channelProvider->destroy();
epicsThreadSleep(1.0);
return 0;
}