> 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