Click here to Skip to main content
6,295,667 members and growing! (12,456 online)
Email Password   helpLost your password?
General Programming » Threads, Processes & IPC » Threads     Intermediate License: The BSD License

Synchronized multi-threading in C++ (No MFC!)

By Vijay Mathew Pandyalakal

A C++ wrapper for Win32 multi-threading
VC6, Visual Studio, Dev
Posted:14 Oct 2003
Updated:19 Apr 2007
Views:137,940
Bookmarked:66 times
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
37 votes for this article.
Popularity: 5.56 Rating: 3.54 out of 5
4 votes, 10.8%
1
4 votes, 10.8%
2
2 votes, 5.4%
3
9 votes, 24.3%
4
18 votes, 48.6%
5

Introduction

Have you ever found multi-threading and thread synchronization difficult tasks in Win32? Then try these classes. Here I provide a small code library that will give you tools for creating multi-threaded applications in the C++ way, with out using MFC. If you have done multi-threading in Java and got fed up with the thread classes in MFC, you have come to the right place. Enough talking, I will take you right away through a step-by-step tutorial on using these classes.

Background

You should be familiar with OOPs. You should also be familiar with terms like virtual functions, overriding, namespaces, exceptions etc. But you need not be a C++ guru.

Using the code

First, I will give you the list of header files you should include in the CPP file that use my thread classes:

#include <STRING>

using namespace std;

#include "ou_thread.h"

using namespace openutils;

The next step is to create a customized Thread class from the base Thread class that you find in ou_thread.h:

class MyThread : public Thread {
private:
    int m_nCount;
public:
    MyThread(int n,const char* nm) {
        Thread::setName(nm);
        m_nCount = n;
    }
    void run() {
        for(int i=0;i<m_nCount;i++) {
            cout << getName().c_str() << ":" << i << endl;
        }
    }
};

If you have done thread programming in Java, the above class will look familiar. First we have inherited publicly from the Thread class and then we gave our own implementation to the run() function. The MyThread class we just created has a private integer variable which is used by the run() function to print out the thread's name that much time. The setName() and getName() functions are derived from the base class.

Now let us create a main() function to test the MyThread class:

int main() {
    Thread *t1 = new MyThread(15,"Thread 01");
    Thread *t2 = new MyThread(10,"Thread 02");
    try {
        t1->start();
        t2->start();
        t1->stop();
        t2->stop();
    }catch(ThreadException ex) {
      printf("%s\n",ex.getMessage().c_str());
  } 
  delete t1;
  delete t2;
  return 0;

Here we created two thread pointers pointing to MyThread objects.

The MyThread constructor takes two arguments, value of the counter variable and the thread name. Then we start both these threads by calling the start() function, which in turn calls our implementation of run(). If the low-level thread creation was not successful, then the try-catch block will handle that problem gracefully.

When you run this program, you will get output much like the following:

ThreThread 02:0
Thread 02:1
Thread 02ad 01:1
Thread 01:2
Thread 01:3
Thr:2
Thread 02:3
Thread 02:4
Thread 0ead 01:4
Thread 01:5
Thread 01:6
Th2:5
Thread 02:6
Thread 02:7
Thread read 01:7
Thread 01:8
Thread 01:9
T02:8

Thread synchronization

You can see that thread2 is executing the run() function before thread1 has finished and both threads execute together to produce a confusing result. This can be more serious if both threads are accessing a critical resource like a database file at the same time. This problem can be solved by using a Mutex object.

A Mutex is a synchronization object that allows one thread mutually exclusive access to a resource. We can create a mutex using the Mutex class and hand over its ownership to the first thread. The next thread can be made to "wait" until the first thread "releases" the ownership of that object. Let us see how this can be achieved.

First include the following declaration to the main() function just before calling t1->start();

Mutex m("MyMutex");

This will create a mutex object identified by the name MyMutex. We can use this object in the run() function to control access to shared code. Modify the run() function in MyThread class to include calls to wait() and release() functions:

void run() {
        wait("MyMutex");
        for(int i=0;i<m_nCount;i++) {
            cout << getName().c_str() << ":" << i << endl;
        }
        release("MyMutex");
    }

Please keep in mind that mutex names are case sensitive. If the mutex is not found, then wait() and release() functions will throw a ThreadException. Now recompile and run the program. You will see the following output:

Thread 01:1
Thread 01:2
Thread 01:3
Thread 01:4
Thread 01:5
Thread 01:6
Thread 01:7
Thread 01:8
Thread 01:9
Thread 01:10
Thread 01:11
Thread 01:12
Thread 01:13
Thread 01:14
Thread 02:0
Thread 02:1
Thread 02:2
Thread 02:3
Thread 02:4
Thread 02:5
Thread 02:6
Thread 02:7
Thread 02:8
Thread 02:9

You can see how thread2 waits until thread1 is finished, to produce the desired output. Using mutexes has their own overhead and tends to slow down everything. So use them when only one thread at a time should be allowed to modify data or some other controlled resource.

If synchronized by a mutex, it is important to call stop() on all threads in the same order start() was called on them. If no mutex was used, you can avoid calling stop() on threads.

Call the release() function of mutex after the calls to stop() functions of the thread objects.

t1->stop();
t2->stop();
m.release();

Thread priority

Every thread has a base priority level determined by the thread's priority value and the priority class of its process. The system uses the base priority level of all executable threads to determine which thread gets the next slice of CPU time. Threads are scheduled in a round-robin fashion at each priority level, and only when there are no executable threads at a higher level does scheduling of threads at a lower level take place.

The setPriority() function enables setting the base priority level of a thread relative to the priority class of its process. This function can take any of the following values as its only argument:

Priority Value Meaning
Thread::P_ABOVE_NORMAL Indicates 1 point above normal priority for the priority class.
Thread::P_BELOW_NORMAL Indicates 1 point below normal priority for the priority class.
Thread::P_HIGHEST Indicates 2 points above normal priority for the priority class.
Thread::P_IDLE Keeps this thread idle.
Thread::P_LOWEST Indicates 2 points below normal priority for the priority class.
Thread::P_NORMAL Indicates normal priority for the priority class.
Thread::P_CRITICAL Puts the thread in the highest possible priority.

For example, the following code puts thread1 in a high priority:

t1->setPriority(Thread::P_HIGHEST);

By default, a thread is created with the P_NORMAL priority.

Running the demo project

To run the demo project, create a Win32 console application in your Visual C++ IDE, add the demo project files to it and compile.

History

  • Created: October 14th, 2003
  • Updated source: 9 July 2004

License

This article, along with any associated source code and files, is licensed under The BSD License

About the Author

Vijay Mathew Pandyalakal


Member

Location: India India

Other popular Threads, Processes & IPC articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 63 (Total in Forum: 63) (Refresh)FirstPrevNext
Questionunhandled exception in kernel32 0xE06D7363 on Thread::wait ( line "return false") Pinmemberbarot12:21 7 May '09  
GeneralYou need to call CloseHandle after OpenMutex Pinmembermgrcar14:31 21 Jul '07  
QuestionRe: You need to call CloseHandle after OpenMutex Pinmembermaglev_tgv19:30 12 Nov '07  
GeneralRe: You need to call CloseHandle after OpenMutex Pinmemberarashmoradynejad9:25 20 Dec '07  
GeneralCompile error - cannot convert to LPCWSTR PinmemberMEK322:14 5 Jun '07  
GeneralRe: Compile error - cannot convert to LPCWSTR PinmemberVijay Mathew Pandyalakal19:01 6 Jun '07  
GeneralRe: Compile error - cannot convert to LPCWSTR PinmemberMEK322:53 7 Jun '07  
GeneralRe: Compile error - cannot convert to LPCWSTR Pinmemberembtech14:37 14 Jun '07  
GeneralRe: Compile error - cannot convert to LPCWSTR Pinmembermaglev_tgv20:11 19 Nov '07  
GeneralRe: Compile error - cannot convert to LPCWSTR Pinmemberjk2l15:48 30 Mar '08  
QuestionCString to double conversion problem? PinmemberVinod Moorkkan22:41 19 Apr '07  
AnswerRe: CString to double conversion problem? Pinmemberfrank.fang1:18 25 Apr '07  
GeneralI get so many errors Pinmemberdeville754:20 23 Jan '07  
GeneralRe: I get so many errors PinmemberVijay Mathew Pandyalakal18:35 23 Jan '07  
GeneralLinking Problem Pinmemberomerfarooqz7:18 16 Aug '06  
GeneralRe: Linking Problem PinmemberVijay Mathew Pandyalakal18:30 16 Aug '06  
GeneralBUG: CreateThread(NULL,0,(LPTHREAD_START_ROUTINE)_ou_thread_proc,(Thread*)this,0,&tid) Pinmembercp6633110:16 10 Aug '06  
GeneralRe: BUG: CreateThread(NULL,0,(LPTHREAD_START_ROUTINE)_ou_thread_proc,(Thread*)this,0,&tid) PinmemberVijay Mathew Pandyalakal18:57 10 Aug '06  
GeneralThread fails if "stop" not called Pinmembermcd909:37 21 Apr '06  
GeneralLinking error Pinmembermcd908:40 20 Feb '06  
GeneralRe: Linking error Pinmembermcd908:57 20 Feb '06  
GeneralRe: Linking error PinmemberVijay Mathew Pandyalakal18:53 20 Feb '06  
GeneralRe: Linking error Pinmembermcd903:17 21 Feb '06  
GeneralRe: Linking error PinmemberVijay Mathew Pandyalakal18:21 21 Feb '06  
GeneralAn error when i add a sleep() in run() PinmemberSurpaimb0:57 22 Sep '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 19 Apr 2007
Editor: Sean Ewington
Copyright 2003 by Vijay Mathew Pandyalakal
Everything else Copyright © CodeProject, 1999-2009
Web10 | Advertise on the Code Project