[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [LCP]Threads in Linux



Title: RE: [LCP]Threads in Linux

> question, if I don't use pthreads what can I use ? the
> standards fork stuff ?

fork will fork processes. They have different data.
Threads have the same data. If you need to access the same
data from different processes, you'd have to do extra
work (SHM, pipes, etc....)

--
Vincent Penquerc'h