Returns the current spin count.
Definition at line 603 of file int_QMutexImpl.h. References FX::QMutexPrivate::spinCount. 00604 { 00605 #ifndef FXDISABLE_THREADS 00606 #ifdef USE_OURMUTEX 00607 return p->spinCount; 00608 #else 00609 return 0; 00610 #endif 00611 #else 00612 return 0; 00613 #endif 00614 }
|