Re: [racket-users] Running user-supplied code in a place

2021-04-07 Thread David Storrs
Thanks, George. This helped a lot. On Wed, Apr 7, 2021 at 9:03 PM George Neuner wrote: > > > On 4/7/2021 5:34 PM, David Storrs wrote: > > I'm trying to expand a task manager to optionally use places and I'm > > having some trouble understanding the issue. > > > > ; test.rkt > > #lang racket > >

Re: [racket-users] Running user-supplied code in a place

2021-04-07 Thread George Neuner
On 4/7/2021 5:34 PM, David Storrs wrote: I'm trying to expand a task manager to optionally use places and I'm having some trouble understanding the issue. ; test.rkt #lang racket (provide start) (define (start thnk) (sync (place ch (place-channel-put ch (thnk) ; x.rkt #lang racket

[racket-users] Running user-supplied code in a place

2021-04-07 Thread David Storrs
I'm trying to expand a task manager to optionally use places and I'm having some trouble understanding the issue. ; test.rkt #lang racket (provide start) (define (start thnk) (sync (place ch (place-channel-put ch (thnk) ; x.rkt #lang racket (require "test.rkt") (start (thunk 'ok))