[Nomen-dev] Multithreading
Brought to you by:
bhurt
|
From: <bre...@eu...> - 2002-04-09 09:22:01
|
I think this is a healthy reading if you are interested in multithreading implementations: http://supertech.lcs.mit.edu/cilk/manual-5.3.1.pdf Cilk homepage: http://supertech.lcs.mit.edu/cilk Cilk is a minimalistic extension of C that allows parallel programming. Actual threads (or processes) are started by the scheduler when a processor is idle, according to the "work-stealing" principle. -- Denis. |