RHEL9 compliant

This commit is contained in:
Jan Chrin
2026-09-15 09:04:43 +02:00
parent 7f84e06fc2
commit 01f60b2f7f
29 changed files with 721214 additions and 530 deletions
+9 -1
View File
@@ -101,6 +101,8 @@ int main( int argc, char *argv[] )
try
{
cout << "Open channels" << endl;
cafe->open(pvArray[0].c_str(), handle);
cafe->open(PV_WF, handle_wf);
cafe->open(pvArray[3].c_str(), h);
@@ -108,9 +110,15 @@ int main( int argc, char *argv[] )
}
catch(CAFEException_open & e)
{
cout << e.what() << endl;
cout << e.what() << endl;
exit(1);
}
catch(...)
{
cout << "Exception" << endl;
exit(1);
}
cout << "---------------------------------------------------------------------" << endl;
cout << "START: (1) Establishing connections to EPICS Process Variables (PVs) " << endl;