[vdr] [ANNOUNCE] VDR version 2.6.4 released

2023-02-18 Thread Klaus Schmidinger
VDR version 2.6.4 is now available at the official VDR GIT archive git://git.tvdr.de You can also get the latest stable version with git clone --branch stable/2.6 git://git.tvdr.de/vdr.git or as a tar archive with

Re: [vdr] [PATCH] Fix cThread related race conditions

2023-02-18 Thread Marko Mäkelä
Wed, Feb 15, 2023 at 05:17:55PM +0100, Klaus Schmidinger wrote: On 02.02.23 21:56, Patrick Lerda wrote: ... diff --git a/thread.c b/thread.c index 93eb8c0..21be7a4 100644 --- a/thread.c +++ b/thread.c @@ -312,13 +312,16 @@ bool cThread::Start(void)

Re: [vdr] [PATCH] Use cThread::mutex with absolute cCondVar::TimedWait()

2023-02-18 Thread Marko Mäkelä
Wed, Feb 15, 2023 at 06:01:46PM +0100, Klaus Schmidinger wrote: On 22.01.23 13:52, Marko Mäkelä wrote: Hi, I would propose the following patch, or some equivalent interface that would allow cThread::mutex to be used with some cCondVar in derived classes: diff --git a/thread.h b/thread.h