At Sun, 23 May 2021 14:57:42 +0000, Sage Gerard wrote: > Is there a cross-VM way to pass an arbitrary input port to the C > runtime (e.g. via open-input-bytes), such that the C runtime can read > bytes on its own?
No, not unless you know that the port's implementation is sufficiently constrained. In general, reading from a port can involve thread switches and synchronization, and those are not allowed in callbacks from foreign libraries. (BC doesn't prohibit non-atomic callbacks as aggressively as CS, but interacting with the Racket thread scheduler from a callback can go wrong in various ways with BC, too.) Matthew -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/racket-users/20210523175706.10c%40sirmail.smtps.cs.utah.edu.

