Changed printed messages to be the same for all TestAsyn supports.

This commit is contained in:
Ralph Lange
2004-11-16 11:30:20 +00:00
parent 87cef6172d
commit 5e94b2146f
8 changed files with 11 additions and 8 deletions

View File

@@ -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);

View File

@@ -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);

View File

@@ -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);

View File

@@ -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);

View File

@@ -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);

View File

@@ -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);

View File

@@ -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);

View File

@@ -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);