MultiThreading
-
Hi All How can i create and call multithreading?i am try to call a function through thread more than one time.Plz help me
NewVC++ wrote:
How can i create and call multithreading
No you don't create something known as multithreading or neither call it. It's a concept where you instantiate multiple threads, allow them to run, synchronize them and blah blah.... You will find some excellent articles on multithreading on Code Project. Just use the search window If you are calling the same function on the same thread than it is not multi threading. You can use a while loop inside the thread function and call the required function as many times as you need.
You need to google first, if you have "It's urgent please" mentioned in your question. ;-)_AnShUmAn_
-
NewVC++ wrote:
How can i create and call multithreading
No you don't create something known as multithreading or neither call it. It's a concept where you instantiate multiple threads, allow them to run, synchronize them and blah blah.... You will find some excellent articles on multithreading on Code Project. Just use the search window If you are calling the same function on the same thread than it is not multi threading. You can use a while loop inside the thread function and call the required function as many times as you need.
You need to google first, if you have "It's urgent please" mentioned in your question. ;-)_AnShUmAn_
-
Hi All How can i create and call multithreading?i am try to call a function through thread more than one time.Plz help me