The pi type trilogy (Rust RFC)

This issue is reference issue for the upcomming pi type trilogy, dividing the old RFC into 3 parts. Read more

Similar

Writing an OS in Rust: Double Faults

In this post we explore double faults in detail. We also set up an Interrupt Stack Table to catch double faults on a separate kernel stack. This way, we can completely prevent triple faults, even on kernel stack overflow.

Read more »

Implementing ptsname_r on OS X with Rust

I've been working on a project with rust that requires creating a pseudo-terminal and like many others, I've run into a lot of problems with the functions available to get a pair of master/slave fds for my PTY. openpty int openpty(int *amaster, int *aslav... (more…)

Read more »