ConditionVariable Overview - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Overview of the Threads:-ConditionVariable Package

 

Calling Sequence

Description

List of Threads:-ConditionVariable Package Commands

Examples

Calling Sequence

Threads:-ConditionVariable:-command( arguments )

command( arguments )

Description

• 

The Threads:-ConditionVariable package provides user-level commands for condition variables.  Condition variables are used to synchronize the execution of multiple threads.  Condition variables can be seen as a better implementation of a polling loop.  They allow a thread to wait until a particular event occurs and then begin executing again.

• 

Using condition variables, threads can pause their execution, waiting for another thread to tell them to continue.  The thread that signals the paused threads has the option of either starting one thread or all the threads waiting on the condition variable.

• 

If multiple threads are waiting on a condition variable and only one is started, there is no guarantee as to which thread is started.

• 

Using a condition variable also requires a mutex. You should become familiar with the use of mutexes before using condition variables.

• 

A basic situation where a condition variable is used is when multiple threads are working and the threads need to exchange data at some point.  As the threads reach that point they place their data into a shared location and then wait on the condition variable.  When the final thread reaches the synchronization point, it can signal the other threads to wake up and all the threads can continue and access the shared data.

• 

Another example of the use of a condition variable is the producer/consumer pattern.  In this pattern there is one thread, the producer, that is producing jobs (something that requires processing) and adding them to a list.  Other threads, the consumers, remove a job from the list and perform the required processing.

• 

If a consumer thread is able to process a job, but none are available, then the thread will pause its execution by waiting on a condition variable. When the producer generates more jobs, it can signal the threads waiting on the condition variable to start processing the jobs.  

List of Threads:-ConditionVariable Package Commands

• 

The Create function is used to create a new condition variable.

• 

The Destroy function is used to free the resources associated with a condition variable.

• 

The Wait function is used by a thread to pause itself until it is signaled by another thread.

• 

The Signal function is used by a thread to start one thread that is waiting on the condition variable.

• 

The Broadcast function is used by a thread to start all the threads that are waiting on the condition variable.

Examples

This is an example of a Producer/Consumer pattern.

The Producer creates jobs (here represented by integers in the global table tab).  The Consumers remove a job, process it, then insert the result back into the table.

We have two condition variables and one mutex.  One condition variable (cp) is used for the Producer thread.  The Producer thread will pause on the producer condition variable if enough jobs are available for processing. The other condition variable (cc) is used for the Consumer threads.  When no jobs are available, the Consumer threads will pause on that condition variable until the Producer creates more jobs.

The mutex is used to protect access to the global variable tab.

Producer := proc( m, cp, cc, max, mindiff )
    global tab, e;
    local i,j,n;

    Threads[Mutex][Lock]( m );
    j := 0;

    tab[ "maxjob" ] := mindiff;
    tab[ "curjob" ] := 1;

    for j from 1 to mindiff
    do
        tab[ j ] := 2*j;
    end do;

    Threads[ConditionVariable][Signal]( cp );

    n := false;
    while ( e )
    do
        j := tab[ "maxjob" ];
        if ( j - tab[ "curjob" ] > mindiff/2 ) then
            n := true;
            Threads[ConditionVariable][Wait]( cp, m );
        end if;

        for i from j to tab[ "curjob" ] + mindiff
        do
            tab[ i ] := 2*i;
        end do;

        tab[ "maxjob" ] := tab[ "curjob" ] + mindiff;

        if ( n ) then
            Threads[ConditionVariable][Broadcast]( cc );
            n := false;
        end if;

    end do;
    Threads[Mutex][Unlock]( m );

end proc:
Consumer := proc( m, cp, cc, max )
    global tab, e;
    local n, i, j, num;

    num := 0;
    Threads[Mutex][Lock]( m );
    while ( num < max )
    do
        while ( tab[ "curjob" ] = tab[ "maxjob" ] )
        do
            Threads[ConditionVariable][Signal]( cp );
            Threads[ConditionVariable][Wait]( cc, m );
        end do;

        n := tab[ "curjob" ];
        j := tab[ n ];
        tab[ "curjob" ] := n + 1;

        Threads[Mutex][Unlock]( m );

        j := add( i, i=1..j );
        num := num+1;

        Threads[Mutex][Lock]( m );
        tab[ n ] := j;
    end do;
    Threads[Mutex][Unlock]( m );
end proc:

tabtable&colon;

mThreadsMutexCreate

m2

(1)

ccThreadsConditionVariableCreate

cc1

(2)

cpThreadsConditionVariableCreate

cp2

(3)

etrue&colon;

Start the Producer thread. We wait on cp until the Producer thread has started.

ThreadsMutexLockm

id1ThreadsCreateProducerm&comma;cp&comma;cc&comma;31&comma;10

id11

(4)

ThreadsConditionVariableWaitcp&comma;m

ThreadsMutexUnlockm

Start the Consumer threads.  They will each consume 100 jobs and there are 5 threads so we should process 500 jobs.

id2seqThreadsCreateConsumerm&comma;cp&comma;cc&comma;100&comma;i=1..5

id22&comma;3&comma;4&comma;5&comma;6

(5)

Wait for the Consumer threads to finish.

ThreadsWaitopid2

ThreadsMutexLockm

Shutdown the Producer thread.

efalse&colon;

ThreadsConditionVariableSignalcp

ThreadsMutexUnlockm

ThreadsWaitid1

Check the number of processed jobs.

printtabcurjob

501

(6)

Check the results of one job.

printtab233

108811

(7)

printaddi&comma;i=1..2233

108811

(8)

See Also

Threads

Threads:-ConditionVariable:-Broadcast

Threads:-ConditionVariable:-Create

Threads:-ConditionVariable:-Destroy

Threads:-ConditionVariable:-Signal

Threads:-ConditionVariable:-Wait

Threads:-Mutex