Skip to content

Commit 58a6d3c

Browse files
authored
Merge pull request #2673 from pi1024e/Optimize
No need for a for loop
2 parents 509891d + 4dd7a14 commit 58a6d3c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

CoreFoundation/Base.subproj/CFPlatform.c

+1-4
Original file line numberDiff line numberDiff line change
@@ -1337,10 +1337,7 @@ void _CF_dispatch_once(dispatch_once_t *predicate, void (^block)(void)) {
13371337
} else {
13381338
dow.dow_sema = _CF_get_thread_semaphore();
13391339
next = *vval;
1340-
for (;;) {
1341-
if (next == CF_DISPATCH_ONCE_DONE) {
1342-
break;
1343-
}
1340+
while (next != CF_DISPATCH_ONCE_DONE) {
13441341
if (__sync_bool_compare_and_swap(vval, next, tail, &next)) {
13451342
dow.dow_thread = next->dow_thread;
13461343
dow.dow_next = next;

0 commit comments

Comments
 (0)