liso 1.3.1

Line Input with Simultaneous Output: input lines are editable, output lines are never scrambled, and all of it thread safe.
Documentation
1
2
3
4
5
6
7
8
//! This module contains utility functions required for proper functioning on
//! UNIX.

pub(crate) fn sigstop_ourselves() {
    unsafe {
        libc::raise(libc::SIGSTOP);
    }
}