Fixing Memory Leaks in Rust

Memory leakage in Rust is completely safe…until you run out and it results in your program being killed by the kernel. Learn how we solved this issue to eliminate memory leaks. Read more

Similar

Writing a basic async debugger for Rust

I’m a big fan of Rust’s async feature, which lets you write explicit state machines like straight-line code. One of the operating systems I maintain, lilos, is almost entirely based on async, and I think it’s a killer feature for embedded development. (more…)

Read more »