diff --git a/src/dev/testDev/devBiTestAsyn.c b/src/dev/testDev/devBiTestAsyn.c index d9b4f194d..d97f94a0d 100644 --- a/src/dev/testDev/devBiTestAsyn.c +++ b/src/dev/testDev/devBiTestAsyn.c @@ -88,7 +88,7 @@ static long read_bi(pbi) switch (pbi->inp.type) { case (CONSTANT) : if(pbi->pact) { - printf("%s Completed\n",pbi->name); + printf("Completed asynchronous processing: %s\n",pbi->name); return(2); /* don't convert */ } else { if(pbi->disv<=0) return(2); diff --git a/src/dev/testDev/devBoTestAsyn.c b/src/dev/testDev/devBoTestAsyn.c index 0f0fc4c4a..aa1251d56 100644 --- a/src/dev/testDev/devBoTestAsyn.c +++ b/src/dev/testDev/devBoTestAsyn.c @@ -87,7 +87,7 @@ static long write_bo(pbo) switch (pbo->out.type) { case (CONSTANT) : if(pbo->pact) { - printf("%s Completed\n",pbo->name); + printf("Completed asynchronous processing: %s\n",pbo->name); return(0); } else { if(pbo->disv<=0) return(2); diff --git a/src/dev/testDev/devHistogramTestAsyn.c b/src/dev/testDev/devHistogramTestAsyn.c index 7d0710dae..0e7f4f28b 100644 --- a/src/dev/testDev/devHistogramTestAsyn.c +++ b/src/dev/testDev/devHistogramTestAsyn.c @@ -84,7 +84,8 @@ static long read_histogram(phistogram) switch (phistogram->svl.type) { case (CONSTANT) : if(phistogram->pact) { - printf("%s Completed\n",phistogram->name); + printf("Completed asynchronous processing: %s\n", + phistogram->name); return(0); /*add count*/ } else { if(phistogram->disv<=0) return(2); diff --git a/src/dev/testDev/devMbbiTestAsyn.c b/src/dev/testDev/devMbbiTestAsyn.c index d97d88ba9..0dc756d75 100644 --- a/src/dev/testDev/devMbbiTestAsyn.c +++ b/src/dev/testDev/devMbbiTestAsyn.c @@ -88,7 +88,7 @@ static long read_mbbi(pmbbi) switch (pmbbi->inp.type) { case (CONSTANT) : if(pmbbi->pact) { - printf("%s Completed\n",pmbbi->name); + printf("Completed asynchronous processing: %s\n",pmbbi->name); return(2); /* don't convert */ } else { if(pmbbi->disv<=0) return(2); diff --git a/src/dev/testDev/devMbboTestAsyn.c b/src/dev/testDev/devMbboTestAsyn.c index e3a04ee7d..7827280b1 100644 --- a/src/dev/testDev/devMbboTestAsyn.c +++ b/src/dev/testDev/devMbboTestAsyn.c @@ -87,7 +87,7 @@ static long write_mbbo(pmbbo) switch (pmbbo->out.type) { case (CONSTANT) : if(pmbbo->pact) { - printf("%s Completed\n",pmbbo->name); + printf("Completed asynchronous processing: %s\n",pmbbo->name); return(0); } else { if(pmbbo->disv<=0) return(2); diff --git a/src/dev/testDev/devSiTestAsyn.c b/src/dev/testDev/devSiTestAsyn.c index aa0169bc7..a673d85e5 100644 --- a/src/dev/testDev/devSiTestAsyn.c +++ b/src/dev/testDev/devSiTestAsyn.c @@ -87,7 +87,8 @@ static long read_stringin(pstringin) switch (pstringin->inp.type) { case (CONSTANT) : if(pstringin->pact) { - printf("%s Completed\n",pstringin->name); + printf("Completed asynchronous processing: %s\n", + pstringin->name); return(0); } else { if(pstringin->disv<=0) return(2); diff --git a/src/dev/testDev/devSoTestAsyn.c b/src/dev/testDev/devSoTestAsyn.c index 4bb41ccfa..c2b28625b 100644 --- a/src/dev/testDev/devSoTestAsyn.c +++ b/src/dev/testDev/devSoTestAsyn.c @@ -86,7 +86,8 @@ static long write_stringout(pstringout) switch (pstringout->out.type) { case (CONSTANT) : if(pstringout->pact) { - printf("%s Completed\n",pstringout->name); + printf("Completed asynchronous processing: %s\n", + pstringout->name); return(0); /* don`t convert*/ } else { if(pstringout->disv<=0) return(2); diff --git a/src/dev/testDev/devWfTestAsyn.c b/src/dev/testDev/devWfTestAsyn.c index a4b7da316..f5ffd78db 100644 --- a/src/dev/testDev/devWfTestAsyn.c +++ b/src/dev/testDev/devWfTestAsyn.c @@ -87,7 +87,7 @@ static long read_wf(pwf) switch (pwf->inp.type) { case (CONSTANT) : if(pwf->pact) { - printf("%s Completed\n",pwf->name); + printf("Completed asynchronous processing: %s\n",pwf->name); return(0); /* don`t convert*/ } else { if(pwf->disv<=0) return(2);