mirror of https://github.com/python/cpython
gh-74953: Reformat PyThread_acquire_lock_timed() (#93947)
Reformat the pthread implementation of PyThread_acquire_lock_timed() using a mutex and a conditioinal variable. * Add goto to avoid multiple indentation levels and exit quickly * Use "while(1)" and make the control flow more obvious. * PEP 7: Add braces around if blocks.
This commit is contained in:
parent
dba3fa57e2
commit
2664d9aacf
|
@ -619,36 +619,43 @@ PyThread_acquire_lock_timed(PyThread_type_lock lock, PY_TIMEOUT_T microseconds,
|
|||
|
||||
if (microseconds == 0) {
|
||||
status = pthread_mutex_trylock( &thelock->mut );
|
||||
if (status != EBUSY)
|
||||
if (status != EBUSY) {
|
||||
CHECK_STATUS_PTHREAD("pthread_mutex_trylock[1]");
|
||||
}
|
||||
}
|
||||
else {
|
||||
status = pthread_mutex_lock( &thelock->mut );
|
||||
CHECK_STATUS_PTHREAD("pthread_mutex_lock[1]");
|
||||
}
|
||||
if (status == 0) {
|
||||
if (status != 0) {
|
||||
goto done;
|
||||
}
|
||||
|
||||
if (thelock->locked == 0) {
|
||||
success = PY_LOCK_ACQUIRED;
|
||||
goto unlock;
|
||||
}
|
||||
else if (microseconds != 0) {
|
||||
if (microseconds == 0) {
|
||||
goto unlock;
|
||||
}
|
||||
|
||||
struct timespec abs;
|
||||
if (microseconds > 0) {
|
||||
_PyThread_cond_after(microseconds, &abs);
|
||||
}
|
||||
/* continue trying until we get the lock */
|
||||
// Continue trying until we get the lock
|
||||
|
||||
/* mut must be locked by me -- part of the condition
|
||||
* protocol */
|
||||
while (success == PY_LOCK_FAILURE) {
|
||||
// mut must be locked by me -- part of the condition protocol
|
||||
while (1) {
|
||||
if (microseconds > 0) {
|
||||
status = pthread_cond_timedwait(
|
||||
&thelock->lock_released,
|
||||
status = pthread_cond_timedwait(&thelock->lock_released,
|
||||
&thelock->mut, &abs);
|
||||
if (status == 1) {
|
||||
break;
|
||||
}
|
||||
if (status == ETIMEDOUT)
|
||||
if (status == ETIMEDOUT) {
|
||||
break;
|
||||
}
|
||||
CHECK_STATUS_PTHREAD("pthread_cond_timedwait");
|
||||
}
|
||||
else {
|
||||
|
@ -659,23 +666,32 @@ PyThread_acquire_lock_timed(PyThread_type_lock lock, PY_TIMEOUT_T microseconds,
|
|||
}
|
||||
|
||||
if (intr_flag && status == 0 && thelock->locked) {
|
||||
/* We were woken up, but didn't get the lock. We probably received
|
||||
* a signal. Return PY_LOCK_INTR to allow the caller to handle
|
||||
* it and retry. */
|
||||
// We were woken up, but didn't get the lock. We probably received
|
||||
// a signal. Return PY_LOCK_INTR to allow the caller to handle
|
||||
// it and retry.
|
||||
success = PY_LOCK_INTR;
|
||||
break;
|
||||
}
|
||||
else if (status == 0 && !thelock->locked) {
|
||||
|
||||
if (status == 0 && !thelock->locked) {
|
||||
success = PY_LOCK_ACQUIRED;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (success == PY_LOCK_ACQUIRED) thelock->locked = 1;
|
||||
status = pthread_mutex_unlock( &thelock->mut );
|
||||
CHECK_STATUS_PTHREAD("pthread_mutex_unlock[1]");
|
||||
break;
|
||||
}
|
||||
|
||||
if (error) success = PY_LOCK_FAILURE;
|
||||
// Wait got interrupted by a signal: retry
|
||||
}
|
||||
|
||||
unlock:
|
||||
if (success == PY_LOCK_ACQUIRED) {
|
||||
thelock->locked = 1;
|
||||
}
|
||||
status = pthread_mutex_unlock( &thelock->mut );
|
||||
CHECK_STATUS_PTHREAD("pthread_mutex_unlock[1]");
|
||||
|
||||
done:
|
||||
if (error) {
|
||||
success = PY_LOCK_FAILURE;
|
||||
}
|
||||
return success;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue