fix epicsThreadBooleanStatusFail

This commit is contained in:
Janet B. Anderson
2001-01-18 20:28:24 +00:00
parent a0019d0e5c
commit 5acd6d9547
2 changed files with 4 additions and 4 deletions

View File

@@ -95,7 +95,7 @@ epicsShareFunc epicsThreadBooleanStatus epicsShareAPI epicsThreadLowestPriorityL
*pPriorityJustAbove = newPriority;
return epicsThreadBooleanStatusSuccess;
}
return threadBoolStatusFail;
return epicsThreadBooleanStatusFail;
}
/*
@@ -110,7 +110,7 @@ epicsShareFunc epicsThreadBooleanStatus epicsShareAPI epicsThreadHighestPriority
*pPriorityJustBelow = newPriority;
return epicsThreadBooleanStatusSuccess;
}
return threadBoolStatusFail;
return epicsThreadBooleanStatusFail;
}
#define ARCH_STACK_FACTOR 2

View File

@@ -236,7 +236,7 @@ epicsShareFunc epicsThreadBooleanStatus epicsShareAPI epicsThreadLowestPriorityL
status = epicsThreadBooleanStatusSuccess;
}
else {
status = threadBoolStatusFail;
status = epicsThreadBooleanStatusFail;
}
return status;
}
@@ -255,7 +255,7 @@ epicsShareFunc epicsThreadBooleanStatus epicsShareAPI epicsThreadHighestPriority
status = epicsThreadBooleanStatusSuccess;
}
else {
status = threadBoolStatusFail;
status = epicsThreadBooleanStatusFail;
}
return status;
}