Hacker News new | past | comments | ask | show | jobs | submit login

My point is that you can solve the inter-process case with precisely the same tools that Rust already uses to solve the intra-process cases.

Outside of a pure-Rust single-threaded process that uses only stack allocation, those cases are already using unsafe- for heap allocation, or to launch a thread, or whatever. Or if Rust is a guest in some other language's process, you don't even need unsafe! And the type system features used to contain that unsafe are just as useful when you're sharing memory with another process as when you're sharing memory with another thread.

I'm obviously not saying you can just take a shared reference to an arbitrary mmapped buffer, or whatever. I'm saying that nvm0n2's claim is misleading, because Rust's type system does give you the tools for cases like this, at least to a greater degree than C++'s type system!




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: