File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ Multi-threading changes
75
75
76
76
* Locks now automatically inhibit finalizers from running, to avoid deadlock ([ #38487 ] ).
77
77
* New function ` Base.Threads.foreach(f, channel::Channel) ` for multithreaded ` Channel ` consumption ([ #34543 ] ).
78
+ * There is no longer a restriction on the number of threads ([ #36778 ] ).
78
79
79
80
Build system changes
80
81
--------------------
Original file line number Diff line number Diff line change @@ -190,11 +190,9 @@ a master process to establish a connection before dying.
190
190
### [ ` JULIA_NUM_THREADS ` ] (@id JULIA_NUM_THREADS)
191
191
192
192
An unsigned 64-bit integer (` uint64_t ` ) that sets the maximum number of threads
193
- available to Julia. If ` $JULIA_NUM_THREADS ` exceeds the number of available
194
- CPU threads (logical cores), then the number of threads is set to the number of CPU threads. If
195
- ` $JULIA_NUM_THREADS ` is not positive or is not set, or if the number of CPU
196
- threads cannot be determined through system calls, then the number of threads is
197
- set to ` 1 ` .
193
+ available to Julia. If ` $JULIA_NUM_THREADS ` is not positive or is not set, or if
194
+ the number of CPU threads cannot be determined through system calls, then the number
195
+ of threads is set to ` 1 ` .
198
196
199
197
!!! note
200
198
You can’t perform that action at this time.
0 commit comments