~abcdw/tickets#76: 
Output to stdout in child thread is not flushed

(define (format-i x)
  (format #f "~a\n" x))

(define (reproduce)
  (let loop ((i 0))
    (format #t "hi: ~s\n" (format-i i))
    (usleep 1000000)
    (loop (1+ i))))
(define tth (call-with-new-thread reproduce))

if you run this code, you won't see much output, only next eval action will actually show all accumulated output.

Status
REPORTED
Submitter
~abcdw
Assigned to
No-one
Submitted
2 months ago
Updated
2 months ago
Labels
project:ares