|
|
|
|
|
by didibus
3221 days ago
|
|
Like a runtime only to manage concurrency, but still without a garbage collector and with unboxed types? Is that possible? I mean that's what the RFC looks like it wants to figure out. Erlang occupies a similar space. In what sense? I feel Erlang is at the other end of the spectrum from Rust. Can you explain further? |
|
It is possible, there are many stack swapping libraries in C that don't use garbage collection/excessive heap allocations as proof (e.g. libpth). The RFC is trying to figure that out with rust, but their approach currently requires manually annotating functions with "async," creating an incompatible calling convention with existing Rust code.