The Concurrency Programming Guide says this:
You cannot create concurrent dispatch queues yourself. Instead, there are three global concurrent queues for your application to use.
Then the GCD Reference Guide says this:
dispatch_queue_create()In OS X v10.7 and later, specify
DISPATCH_QUEUE_SERIAL(orNULL) to create a serial queue or specifyDISPATCH_QUEUE_CONCURRENTto create a concurrent queue.
This is a bit confusing; it implies you can indeed create a concurrent queue yourself; is it a case of the docs not being updated to explain current features?

DISPATCH_QUEUE_CONCURRENTis only available since iOS 5.0, and GCD was introduced in iOS 4.0. The Concurrency Programming Guide was probably written at that time. – omz Aug 11 '12 at 9:42