Style fix to be more like _mtx_lock_sleep(): use 'while (!foo) { ... }'
instead of 'for (;;) { if (foo) break; ... }'.
This commit is contained in:
parent
1e2e70b1d6
commit
f781b5a4bb
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=159203
@ -596,9 +596,7 @@ _mtx_lock_spin(struct mtx *m, uintptr_t tid, int opts, const char *file,
|
||||
if (LOCK_LOG_TEST(&m->mtx_object, opts))
|
||||
CTR1(KTR_LOCK, "_mtx_lock_spin: %p spinning", m);
|
||||
|
||||
for (;;) {
|
||||
if (_obtain_lock(m, tid))
|
||||
break;
|
||||
while (!_obtain_lock(m, tid)) {
|
||||
|
||||
/* Give interrupts a chance while we spin. */
|
||||
spinlock_exit();
|
||||
|
Loading…
Reference in New Issue
Block a user