We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 06d7615 + 0ac830f commit 50faff5Copy full SHA for 50faff5
src/init.c
@@ -260,6 +260,13 @@ const struct dispatch_queue_attr_s _dispatch_queue_attrs[]
260
DISPATCH_QUEUE_ATTR_QOS_INITIALIZER(USER_INTERACTIVE),
261
};
262
263
+// _dispatch_queue_attr_concurrent is aliased using libdispatch.aliases
264
+// and the -alias_list linker option on Darwin but needs to be done manually
265
+// for other platforms.
266
+#ifndef __APPLE__
267
+extern struct dispatch_queue_attr_s _dispatch_queue_attr_concurrent
268
+ __attribute__((__alias__("_dispatch_queue_attrs")));
269
+#endif
270
271
#pragma mark -
272
#pragma mark dispatch_vtables
0 commit comments