Ignore:
Timestamp:
Apr 5, 2006, 9:18:34 PM (19 years ago)
Author:
dmik
Message:

Fixed QCriticalSection implementation on OS/2: it was really stupid to suppose that DosEnterCritSec = EnterCriticalSection w/o reading Win32 API docs and w/o searching for QCriticalSection usage within Qt; now mutex semaphores are used instead.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/tools/qcriticalsection_p.h

    r8 r79  
    6161*/
    6262
    63 #if defined(Q_WS_WIN)
    6463class QCriticalSectionPrivate;
    65 #endif
    6664
    6765class QCriticalSection
     
    7371    void leave();
    7472
    75 #if defined(Q_WS_WIN)
    7673private:
    7774    QCriticalSectionPrivate *d;
    78 #endif   
    7975};
    8076
Note: See TracChangeset for help on using the changeset viewer.