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.
Exorcist
Post
by Exorcist » Wed Dec 21, 2005 7:35 am
How can i apply multithreading in c++;
Xaron
Posts: 310 Joined: Sun Oct 16, 2005 7:39 am
Location: Germany
Contact:
Post
by Xaron » Wed Dec 21, 2005 8:03 am
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 » Wed Dec 21, 2005 8:48 am
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 » Wed Dec 21, 2005 9:13 am
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 » Sat Dec 24, 2005 4:46 pm
Zthread is very goog, try it!