IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 27910


Ignore:
Timestamp:
May 10, 2010, 5:48:39 PM (16 years ago)
Author:
Paul Price
Message:

Fix compilation errors.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/imageops/psImageConvolve.c

    r27908 r27910  
    16791679bool psImageConvolveSetThreads(bool set)
    16801680{
    1681     psMutexLock(threadMutex);
     1681    pthread_mutex_lock(&threadMutex);
    16821682    bool old = threaded;                // Old value
    16831683    if (set && !threaded) {
     
    17121712    }
    17131713    threaded = set;
    1714     psMutexUnlock(threadMutex);
     1714    pthread_mutex_unlock(&threadMutex);
    17151715    return old;
    17161716}
Note: See TracChangeset for help on using the changeset viewer.