Closed mjohnson12 closed 1 year ago
Thanks, @mjohnson12 for reporting!
Just to be completely sure, do you expect the following as the output for your case?
DispatchQueue(label: "com.company.concurrentAccessQueue", attributes: .concurrent)
Yes
@mjohnson12 Thanks for confirming. It's fixed as I suggested above. The change will be included in the next Offline Converter update.
dispatch_queue_create("com.company.concurrentAccessQueue", DISPATCH_QUEUE_CONCURRENT);
gets converted toDispatchQueue(label: "com.company.concurrentAccessQueue")
.It's missing the concurrency attribute so it creates a serial queue instead.
This was found using the standalone converter version 5.6.1.