Implimentaion of Multithreading

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
Exorcist

Implimentaion of Multithreading

Post by Exorcist »

How can i apply multithreading in c++;
Xaron
Posts: 310
Joined: Sun Oct 16, 2005 7:39 am
Location: Germany
Contact:

Post by Xaron »

This is such a general topic you better should ask in a c++ forum.

Regards - Xaron
AticAtac
Posts: 29
Joined: Mon Mar 22, 2004 2:46 pm
Location: Germany

Post by AticAtac »

For multithreading you have to create threads, look up in the MSDN-help for these keywords:

CreateThread
TerminateThread

Multithreading can be indeed a complex area, thread-synchronisation is one of the keyowords here.
hybrid

Post by hybrid »

Alternatively search for pthread (aka POSIX threads). There are also wrappers for C++ available, I tried ZThread once, which offers a cross-platform, Java-like API.
Guest

Post by Guest »

Zthread is very goog, try it!
Post Reply