Skip to content
Snippets Groups Projects
Commit 7ae38038 authored by benjamin.franksen's avatar benjamin.franksen
Browse files

seq: explicitly compare status against pvStatOK

This is clearer and more robust than relying on the (incidental)
truth value of a pvStat value.
parent 66a33846
No related branches found
No related tags found
No related merge requests found
...@@ -97,7 +97,7 @@ epicsShareFunc pvStat seq_pvGet(SS_ID ss, VAR_ID varId, enum compType compType) ...@@ -97,7 +97,7 @@ epicsShareFunc pvStat seq_pvGet(SS_ID ss, VAR_ID varId, enum compType compType)
{ {
case epicsEventWaitOK: case epicsEventWaitOK:
status = check_connected(dbch, meta); status = check_connected(dbch, meta);
if (status) return epicsEventSignal(getSem), status; if (status != pvStatOK) return epicsEventSignal(getSem), status;
pvTimeGetCurrentDouble(&after); pvTimeGetCurrentDouble(&after);
tmo -= (after - before); tmo -= (after - before);
break; break;
...@@ -129,7 +129,7 @@ epicsShareFunc pvStat seq_pvGet(SS_ID ss, VAR_ID varId, enum compType compType) ...@@ -129,7 +129,7 @@ epicsShareFunc pvStat seq_pvGet(SS_ID ss, VAR_ID varId, enum compType compType)
ss->getReq[varId] = NULL; ss->getReq[varId] = NULL;
} }
status = check_connected(dbch, meta); status = check_connected(dbch, meta);
if (status) return epicsEventSignal(getSem), status; if (status != pvStatOK) return epicsEventSignal(getSem), status;
break; break;
case epicsEventWaitTimeout: case epicsEventWaitTimeout:
errlogSevPrintf(errlogMajor, errlogSevPrintf(errlogMajor,
...@@ -191,7 +191,7 @@ epicsShareFunc pvStat seq_pvGet(SS_ID ss, VAR_ID varId, enum compType compType) ...@@ -191,7 +191,7 @@ epicsShareFunc pvStat seq_pvGet(SS_ID ss, VAR_ID varId, enum compType compType)
{ {
case epicsEventWaitOK: case epicsEventWaitOK:
status = check_connected(dbch, meta); status = check_connected(dbch, meta);
if (status) return status; if (status != pvStatOK) return status;
if (optTest(sp, OPT_SAFE)) if (optTest(sp, OPT_SAFE))
/* Copy regardless of whether dirty flag is set or not */ /* Copy regardless of whether dirty flag is set or not */
ss_read_buffer(ss, ch, FALSE); ss_read_buffer(ss, ch, FALSE);
...@@ -258,7 +258,7 @@ epicsShareFunc boolean seq_pvGetComplete( ...@@ -258,7 +258,7 @@ epicsShareFunc boolean seq_pvGetComplete(
ss->getReq[varId] = NULL; ss->getReq[varId] = NULL;
epicsEventSignal(getSem); epicsEventSignal(getSem);
status = check_connected(ch->dbch, metaPtr(ch,ss)); status = check_connected(ch->dbch, metaPtr(ch,ss));
if (!status && optTest(sp, OPT_SAFE)) if (status == pvStatOK && optTest(sp, OPT_SAFE))
{ {
/* In safe mode, copy value and meta data from shared buffer /* In safe mode, copy value and meta data from shared buffer
to ss local buffer. */ to ss local buffer. */
...@@ -393,7 +393,7 @@ epicsShareFunc pvStat seq_pvPut(SS_ID ss, VAR_ID varId, enum compType compType) ...@@ -393,7 +393,7 @@ epicsShareFunc pvStat seq_pvPut(SS_ID ss, VAR_ID varId, enum compType compType)
/* Check for channel connected */ /* Check for channel connected */
status = check_connected(dbch, meta); status = check_connected(dbch, meta);
if (status) return status; if (status != pvStatOK) return status;
/* Determine whether to perform synchronous, asynchronous, or /* Determine whether to perform synchronous, asynchronous, or
plain put ((+a) option was never honored for put, so DEFAULT plain put ((+a) option was never honored for put, so DEFAULT
...@@ -519,7 +519,7 @@ epicsShareFunc pvStat seq_pvPut(SS_ID ss, VAR_ID varId, enum compType compType) ...@@ -519,7 +519,7 @@ epicsShareFunc pvStat seq_pvPut(SS_ID ss, VAR_ID varId, enum compType compType)
{ {
case epicsEventWaitOK: case epicsEventWaitOK:
status = check_connected(dbch, meta); status = check_connected(dbch, meta);
if (status) return status; if (status != pvStatOK) return status;
break; break;
case epicsEventWaitTimeout: case epicsEventWaitTimeout:
meta->status = pvStatTIMEOUT; meta->status = pvStatTIMEOUT;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment