Re: bytevector-string-ref

2022-12-21 Thread tomas
On Wed, Dec 21, 2022 at 04:49:09PM +0100, Sascha Ziemann wrote: > > Is that related to "shared arrays"? This seems to be even more general (the > > affine part being the offset of the slice). > > Thanks for the hint. I was not aware of them. > > But I am struggling to use them. This does not work

Re: bytevector-string-ref

2022-12-21 Thread Sascha Ziemann
> Is that related to "shared arrays"? This seems to be even more general (the > affine part being the offset of the slice). Thanks for the hint. I was not aware of them. But I am struggling to use them. This does not work: (define str "Hello, World!") (define bv (string->utf8 str)) (define sa (m

Re: repl-server from fibers task

2022-12-21 Thread Matt Wette
On 12/19/22 1:30 PM, Matt Wette wrote: Hi All, I'm trying to get fibers to run in "pure asynchronous" style with a repl-server. By "pure asynchronous" style I mean #:hz 0 and possibly #:suspendable-ports #f. My only guess is that maybe the repl-server has a continuation barrier in the way.