Check which thread has locked a QMutex

461 Views Asked by At

I am facing a weird deadlock when doing something in our database program. The critical point is when thread tries to lock a QMutex:

QMutexLocker locker(&tableMutex_);

That makes the program go stuck.

I'm baffled, because no other thread - AFAIK - has access to this mutex. What I want to do now is to figure out which thread has locked it. How could I do that?

1

There are 1 best solutions below

2
On

Interrupt your hanging program in a debugger and examine the stack traces of all threads.