Quote Originally Posted by jedipenguin View Post
I'm supposed to use C++ and the PThread API (can't use the Win 32 API). I'm supposed to take a matrix and use a bunch of threads to solve each part of the matrix, or each calculation. I'm to have bunch of threads or process, can't recall which. Anyway, I need them to solve each part of the matrix, but only do one calculation per thread.
You should learn enough C++ to be able to write this as a single-threaded program before you start using threads. Which book/method are you using to learn C++?