I create several parallel queues in my application. dispatch_barrier_syncused to change the share.
Will dispatch_barrier_syncparallel execution be blocked only in the current queue or in all queues?
For example, let's say I have 3 user parallel queues "A", "B" and "C". If I send a block dispatch_barrier_syncto queue "A", will it block parallel execution with "B" and "C"? Or only in "A"?
source
share