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.
1 parent 372ac6a commit 3e85f55Copy full SHA for 3e85f55
test/gcext/gcext.c
@@ -600,6 +600,13 @@ int main()
600
jl_gc_set_cb_notify_external_alloc(alloc_bigval, 1);
601
jl_gc_set_cb_notify_external_free(free_bigval, 1);
602
603
+ // single threaded mode
604
+ // Note: with -t1,1 a signal 10 occurs in task_scanner
605
+ jl_options.nthreadpools = 1;
606
+ jl_options.nthreads = 1;
607
+ int16_t ntpp[] = {jl_options.nthreads};
608
+ jl_options.nthreads_per_pool = ntpp;
609
+
610
jl_init();
611
if (jl_gc_enable_conservative_gc_support() < 0)
612
abort();
0 commit comments