mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed false positives when checking the locking sequence, in case of nested locks within the same thread (cont'd)
This commit is contained in:
parent
210df9d835
commit
c0b8666d1f
6
thread.c
6
thread.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: thread.c 4.5 2017/06/06 09:11:03 kls Exp $
|
* $Id: thread.c 4.6 2017/06/07 12:31:31 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "thread.h"
|
#include "thread.h"
|
||||||
@ -633,7 +633,7 @@ void cStateLockLog::Check(const char *Name, bool Lock, bool Write)
|
|||||||
{
|
{
|
||||||
if (!dumped && Name) {
|
if (!dumped && Name) {
|
||||||
int n = *Name - '0' - 1;
|
int n = *Name - '0' - 1;
|
||||||
if (0 < n && n < SLL_MAX_LIST) {
|
if (0 <= n && n < SLL_MAX_LIST) {
|
||||||
int b = 1 << n;
|
int b = 1 << n;
|
||||||
cMutexLock MutexLock(&mutex);
|
cMutexLock MutexLock(&mutex);
|
||||||
tThreadId ThreadId = cThread::ThreadId();
|
tThreadId ThreadId = cThread::ThreadId();
|
||||||
@ -661,7 +661,7 @@ void cStateLockLog::Check(const char *Name, bool Lock, bool Write)
|
|||||||
logThreadIds[logIndex] = ThreadId;
|
logThreadIds[logIndex] = ThreadId;
|
||||||
logFlags[logIndex] = flags[Index] | (Write ? SLL_WRITE_FLAG : 0);
|
logFlags[logIndex] = flags[Index] | (Write ? SLL_WRITE_FLAG : 0);
|
||||||
#ifdef DEBUG_LOCKCALL
|
#ifdef DEBUG_LOCKCALL
|
||||||
strn0cpy(logCaller[logIndex], cBackTrace::GetCaller(Lock ? 5 : 3, true), SLL_LENGTH);
|
strn0cpy(logCaller[logIndex], cBackTrace::GetCaller(Lock ? 3 : 5, true), SLL_LENGTH);
|
||||||
#endif
|
#endif
|
||||||
if (++logIndex >= SLL_SIZE)
|
if (++logIndex >= SLL_SIZE)
|
||||||
logIndex = 0;
|
logIndex = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user