287 points by fuzztester 32 days ago | 448 comments
No-Panic Rust: A Nice Technique for Systems Programming(reverberate.org) Can Rust replace C? This is a question that has been on my mind for many years, as I created and now am tech lead for upb, a C library for Protocol Buffers. There is an understandable push to bring memory safety to all parts of the software stack, and this would suggest a port of upb to Rust.
Waiting for many things at once with io_uring(mazzo.li) When doing systems programming we often need to wait for something to happen. Common examples might be waiting for some data to come through a socket or waiting on a lock. We also often want to wait on any of several conditions to become true. A web server might be handling many sockets at once, waiting for any number of them to become readable or writeable.
122 points by ashvardanian 140 days ago | 30 comments
Ask HN: C Language Successors(ycombinator.com) For those of you who have experimented with potential C language successors, what are pros and cons and your experiences with them? I am talking about languages like Zig, Odin, C3, Hare, V and possibly Nim and Crystal, assuming that they are considered systems programming languages.
6 points by blueredmodern 173 days ago | 10 comments
Waiting on many things at once with io_uring(mazzo.li) When doing systems programming we often need to wait for something to happen. Common examples might be waiting for some data to come through a socket or waiting on a lock. We also often want to wait on any of several conditions to become true. A web server might be handling many sockets at once, waiting for any number of them to become readable or writeable.