fix epicsThreadBooleanStatusFail
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user