You could use the Posix threads library directly which is available for Unix, Linux and Win systems. Have a look at this tutorial:

http://www.llnl.gov/computing/tutorials/pthreads/

But if ever possible you should derive from QThread and create an instance for every thread you need - for sure makes your life much easier.
Ernst