Reepca
Reepca
Consider the following code, used with Fibers 1.0.0 as packaged in Guix System: ``` (use-modules (fibers) (fibers conditions)) (define some-fluid (make-thread-local-fluid 1234567)) (format #t "Main thread initial value: ~A~%" (fluid-ref...
Consider the following: (run-fibers (lambda () (throw 'foo))) in both current master and 1.0.0 this will cause a hang - `run-fibers` doesn't return, and it doesn't do anything either (in...
Section 2.5 of the manual describes how to wait for conditions, but nothing about how to signal them. Glancing through the source, it looks like that'd be `signal-condition!`.