Mente

ostep.htm

Notes on Operating Systems in 3 Easy Pieces

Anki Questions

System Calls

What does wait() do? The parent process calls wait() to delay its execution until the child finishes executing. When the child is done, wait() returns to the parent.

int main()