- changed status to resolved
default-random-source is not thread-safe
Issue #209
invalid
SRFI-27 has default-random-source
however current implementation of this is not thread-safe. This is most probably why pipeline fails
Comments (2)
-
reporter -
reporter - changed status to invalid
The following scenario is not ideal:
- 2 threads are calling the same
(random n)
- both threads get the same number for each time
If we put state per thread, this would happen and I don't want this. So mark as invalid.
- Log in to comment
Should fix concurrency issue on default-random-source. (Fixes
#209)→ <<cset fbc0560070ea>>