PDA

View Full Version : what is mean of this error?



sunote
13th November 2007, 06:46
my code is compiled and linked completed.but when i run it ,
there error show like this:
QMutex::~QMutex: destroy failure: Device or resource busy

what is mean?

thanks

mchara
13th November 2007, 08:37
Hi,
sorry but i think there's no wizards here ;)
maybe post some code, or describe what are you doing in your program.

the only way i can help without any knowledge about your application is quoting qt manual:


QMutex::~QMutex ()
Destroys the mutex.
Warning: Destroying a locked mutex may result in undefined behavior.

consider using QMutexLocker:

The QMutexLocker class is a convenience class that simplifies locking and unlocking mutexes.