• Welcome to Overclockers Forums! Join us to reply in threads, receive reduced ads, and to customize your site experience!

MS thread/process paradigm: the same as in *ix?

Overclockers is supported by our readers. When you click a link to make a purchase, we may earn a commission. Learn More.

magellan

Member
Joined
Jul 20, 2002
In *ix, when you fork a process, the new process has an independent memory address space and unique PID. When you spawn threads in *ix using the pthreads library, the threads all have the same address space and PID as the parent process. Is the MS thread/process paradigm the same?
 
Back