| From: Danny Yoo (dyoo at hashcollision.org) Date: Mon Apr 22 15:50:48 EDT 2013 |
|
Test case:
###################################
#lang racket
(define ip (open-input-string "hello world"))
(define evt (peek-bytes-evt 1 0 #f ip))
(let loop ()
(sync (handle-evt evt
(lambda (res)
(loop)))))
###################################
If I'm reading 'top' correctly, this shows the memory leak.
| Posted on the users mailing list. |
|