DMS are now locked when used by a command. Added checks and changed

cleaning mechanisms.
This commit is contained in:
Celine Mercier
2019-09-20 20:37:19 +02:00
parent eb6c59dc1e
commit 783a1343c4
14 changed files with 378 additions and 28 deletions

View File

@ -431,7 +431,7 @@ int obi_lcs_align_one_column(const char* dms_name,
k = 0;
// Open DMS
dms = obi_open_dms(dms_name);
dms = obi_open_dms(dms_name, false);
if (dms == NULL)
{
obidebug(1, "\nError opening the DMS");
@ -728,7 +728,7 @@ int obi_lcs_align_two_columns(const char* dms_name,
k = 0;
// Open DMS
dms = obi_open_dms(dms_name);
dms = obi_open_dms(dms_name, false);
if (dms == NULL)
{
obidebug(1, "\nError opening the DMS to align");