Sujet : Re: PIDs for Linux threads (was Re: pid ranges)
De : ldo (at) *nospam* nz.invalid (Lawrence D'Oliveiro)
Groupes : comp.unix.shellDate : 07. Oct 2024, 21:23:17
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <ve1fvl$1rd13$3@dont-email.me>
References : 1 2 3 4 5 6 7 8
User-Agent : Pan/0.160 (Toresk; )
On Mon, 7 Oct 2024 18:29:00 +0200, Janis Papanagnou wrote:
Since processes are handled by the OS kernel what does that imply...?
A common process/thread interface in Linux?
Both fork(2) and POSIX thread creation are essentially wrappers around the
underlying Linux-specific clone(2) call.
<
https://manpages.debian.org/2/clone.2.en.html>
You’ll notice there are a lot more options in there besides creating pure
POSIX-style processes and pure POSIX-style threads.