diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-01-04 15:01:22 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-01-04 15:01:22 +0100 |
commit | 951b3509eabfbf6ff37aa48e44f6042dc9d8af59 (patch) | |
tree | 8e8064e68a4a9cc655440ef3cca0639f5db79022 /thread.h | |
parent | 5821c26c5ea45a2d7aecbab4f7b71139961c8baf (diff) | |
download | vdr-951b3509eabfbf6ff37aa48e44f6042dc9d8af59.tar.gz vdr-951b3509eabfbf6ff37aa48e44f6042dc9d8af59.tar.bz2 |
Using the thread id in the "thread ... won't end" error message
Diffstat (limited to 'thread.h')
-rw-r--r-- | thread.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: thread.h 1.34 2006/01/03 10:10:32 kls Exp $ + * $Id: thread.h 1.35 2006/01/04 14:58:16 kls Exp $ */ #ifndef __THREAD_H @@ -80,6 +80,7 @@ private: bool active; bool running; pthread_t childTid; + tThreadId childThreadId; cMutex mutex; char *description; static tThreadId mainThreadId; |