tg-rcore-tutorial-user 0.4.10

User-space apps for rCore Tutorial chapters (subset for ch2).
Documentation
#![no_std]
#![no_main]

extern crate user_lib;

use user_lib::*;

// 教学目标:
// 父进程向子进程发送 SIGUSR1,验证跨进程信号投递路径。

fn func() {
    println!("user_sig_test succsess");
    sigreturn();
}

#[unsafe(no_mangle)]
pub extern "C" fn main() -> i32 {
    let pid = fork();
    if pid == 0 {
        let mut new = SignalAction::default();
        let old = SignalAction::default();
        new.handler = func as *const () as usize;

        println!("signal_simple2: child sigaction");
        if sigaction(SignalNo::SIGUSR1, &new, &old) < 0 {
            panic!("Sigaction failed!");
        }
        sleep(1000);
        println!("signal_simple2: child done");
        exit(0);
    } else if pid > 0 {
        println!("signal_simple2: parent kill child");
        sleep(500);
        if kill(pid, SignalNo::SIGUSR1) < 0 {
            println!("Kill failed!");
            exit(1);
        }
        println!("signal_simple2: parent wait child");
        let mut exit_code = 0;
        waitpid(pid, &mut exit_code);
        println!("signal_simple2: parent Done");
        exit(0);
    }

    0
}