The standard thread implementation on linux is pthreads and processes can
easily be created by issuing a fork function call. While I was studying
processes recently and reading the man pages for clone I found two important
pieces of information:
- threads are commonly implemented using
clone. - the fork function calls ...