Re: [racket-users] Sync on Distributed Place Channels

2015-08-30 Thread David T. Pierson
On Sun, Aug 30, 2015 at 06:28:24AM -0600, Matthew Flatt wrote: > At Sun, 30 Aug 2015 08:19:22 -0400, "David T. Pierson" wrote: > > I can duplicate the behavior. It seems like a bug. > > A place doubles as a pace channel, but `sync` on a place is like > `place-wait`, not like `place-channel-get`.

Re: [racket-users] Sync on Distributed Place Channels

2015-08-30 Thread Matthew Flatt
At Sun, 30 Aug 2015 08:19:22 -0400, "David T. Pierson" wrote: > On Mon, Aug 24, 2015 at 10:45:11AM -0700, Konstantin Weitz wrote: > > I'm trying to receive messages from a place. Receiving the messages > > with `place-channel-get` works fine, but using `sync` blocks > > indefinitely. I want to use

Re: [racket-users] Sync on Distributed Place Channels

2015-08-30 Thread David T. Pierson
On Mon, Aug 24, 2015 at 10:45:11AM -0700, Konstantin Weitz wrote: > I'm trying to receive messages from a place. Receiving the messages > with `place-channel-get` works fine, but using `sync` blocks > indefinitely. I want to use `sync` instead of `place-channel-get` to > check multiple channels sim