| 190 | bool operator==(libdispatch_queue const &) const = default; |
| 191 | |
| 192 | void submit(__libdispatch::task_base *f) |
| 193 | { |
| 194 | auto queue = dispatch_get_global_queue(priority, 0); |
| 195 | dispatch_async_f(queue, f, reinterpret_cast<void (*)(void *) noexcept>(f->execute)); |
| 196 | } |
| 197 | |
| 198 | auto get_scheduler() |
| 199 | { |