Merge "Small style cleanup."

This commit is contained in:
Elliott Hughes 2013-12-18 18:06:16 +00:00 committed by Gerrit Code Review
commit d2bcbf0dbe
2 changed files with 2 additions and 2 deletions

View File

@ -154,7 +154,7 @@ int __pthread_cond_timedwait_relative(pthread_cond_t* cond, pthread_mutex_t* mut
int status = __futex_wait_ex(&cond->value, COND_IS_SHARED(cond), old_value, reltime); int status = __futex_wait_ex(&cond->value, COND_IS_SHARED(cond), old_value, reltime);
pthread_mutex_lock(mutex); pthread_mutex_lock(mutex);
if (status == (-ETIMEDOUT)) { if (status == -ETIMEDOUT) {
return ETIMEDOUT; return ETIMEDOUT;
} }
return 0; return 0;

View File

@ -783,7 +783,7 @@ int pthread_mutex_lock_timeout_np_impl(pthread_mutex_t *mutex, unsigned msecs)
* thread. * thread.
*/ */
if (MUTEX_STATE_BITS_IS_LOCKED_CONTENDED(mvalue)) { if (MUTEX_STATE_BITS_IS_LOCKED_CONTENDED(mvalue)) {
if (__futex_wait_ex(&mutex->value, shared, mvalue, &ts) == (-ETIMEDOUT)) { if (__futex_wait_ex(&mutex->value, shared, mvalue, &ts) == -ETIMEDOUT) {
return EBUSY; return EBUSY;
} }
mvalue = mutex->value; mvalue = mutex->value;