This video series, related article and repo explore Linux TTY, processes, signals, and more using Rust. The video provides live coding examples of using Rust to send and receive POSIX signals, communicate with processes via IPC, and spawn processes. This is part 2 of a 3 part series.
Article:
https://developerlife.com/2024/08/20/...
For comments and feedback please use these:
Repo: https://github.com/nazmulidris/rust-s...
Issues: https://github.com/nazmulidris/rust-s...
Chapters:
00:00:00 Intro
00:02:35 Dependencies
00:04:44 Ex 1 - Receive Linux (POSIX, Unix) signals using tokio
00:36:10 Copy PID to clipboard
00:40:50 procspawn crate intro
00:44:00 Ex 2 - create child proc w/ procspawn
01:03:53 Remove unwrap() from Example 1 and 2
01:14:24 Ex 3 - procspawn and IPC
01:46:38 Ex 4 - Send and receive Linux signals using signal-hook