File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -131,8 +131,8 @@ static const char opts[] =
131
131
" interface if supported (Linux and Windows) or to the number of CPU\n"
132
132
" threads if not supported (MacOS) or if process affinity is not\n"
133
133
" configured, and sets M to 1.\n"
134
- " --gcthreads=M[,N ] Use M threads for the mark phase of GC and N (0 or 1) threads for the concurrent sweeping phase of GC.\n"
135
- " M is set to half of the number of compute threads and N is set to 0 if unspecified.\n"
134
+ " --gcthreads=N[,M ] Use N threads for the mark phase of GC and M (0 or 1) threads for the concurrent sweeping phase of GC.\n"
135
+ " N is set to half of the number of compute threads and M is set to 0 if unspecified.\n"
136
136
" -p, --procs {N|auto} Integer value N launches N additional local worker processes\n"
137
137
" \"auto\" launches as many workers as the number of local CPU threads (logical cores)\n"
138
138
" --machine-file <file> Run processes on hosts listed in <file>\n\n"
@@ -838,7 +838,7 @@ JL_DLLEXPORT void jl_parse_opts(int *argcp, char ***argvp)
838
838
char * endptri ;
839
839
long nsweepthreads = strtol (& endptr [1 ], & endptri , 10 );
840
840
if (errno != 0 || endptri == & endptr [1 ] || * endptri != 0 || nsweepthreads < 0 || nsweepthreads > 1 )
841
- jl_errorf ("julia: --gcthreads=<n>,<m>; n must be 0 or 1" );
841
+ jl_errorf ("julia: --gcthreads=<n>,<m>; m must be 0 or 1" );
842
842
jl_options .nsweepthreads = (int8_t )nsweepthreads ;
843
843
}
844
844
break ;
You can’t perform that action at this time.
0 commit comments