We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b7b063 commit 553c05cCopy full SHA for 553c05c
src/queue.c
@@ -7818,6 +7818,7 @@ _dispatch_sigsuspend(void)
7818
}
7819
#endif // !defined(_WIN32)
7820
7821
+#if defined(__linux__)
7822
DISPATCH_NORETURN
7823
static void
7824
_dispatch_sig_thread(void *ctxt DISPATCH_UNUSED)
@@ -7831,6 +7832,7 @@ _dispatch_sig_thread(void *ctxt DISPATCH_UNUSED)
7831
7832
_dispatch_sigsuspend();
7833
#endif
7834
7835
+#endif
7836
7837
void
7838
dispatch_main(void)
@@ -7969,7 +7971,7 @@ _dispatch_context_cleanup(void *ctxt)
7969
7971
#pragma mark -
7970
7972
#pragma mark dispatch_init
7973
-#if !DISPATCH_USE_COOPERATIVE_WORKQUEUE
7974
+#if !DISPATCH_USE_INTERNAL_WORKQUEUE && !DISPATCH_USE_COOPERATIVE_WORKQUEUE
7975
7976
_dispatch_cooperative_root_queue_init_fallback(dispatch_queue_global_t dq)
7977
{
0 commit comments