1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

Increased POLLTIMEOUTS_BEFORE_DEVICECLEAR in transfer.c to 6 to avoid problems with the larger buffer reserve

This commit is contained in:
Klaus Schmidinger 2005-02-19 14:40:36 +01:00
parent 4871f1188e
commit c6aa52c204
3 changed files with 6 additions and 2 deletions

View File

@ -1149,6 +1149,8 @@ Marco Schl
for reporting a missing reset of the 'repacker' in cTS2PES::Clear() for reporting a missing reset of the 'repacker' in cTS2PES::Clear()
for avoiding unnecessary calls to SetPid() in cDvbDevice::SetAudioTrackDevice() for avoiding unnecessary calls to SetPid() in cDvbDevice::SetAudioTrackDevice()
for fixing calling cStatus::MsgChannelSwitch() in cDevice::SetChannel() for fixing calling cStatus::MsgChannelSwitch() in cDevice::SetChannel()
for increasing POLLTIMEOUTS_BEFORE_DEVICECLEAR in transfer.c to 6 to avoid problems
with the larger buffer reserve
Jürgen Schmitz <j.schmitz@web.de> Jürgen Schmitz <j.schmitz@web.de>
for reporting a bug in displaying the current channel when switching via the SVDRP for reporting a bug in displaying the current channel when switching via the SVDRP

View File

@ -3426,3 +3426,5 @@ Video Disk Recorder Revision History
Marco Schlüßler). Marco Schlüßler).
- Replaced the call to system("sync") in SpinUpDisk() with fdatasync(f) to avoid - Replaced the call to system("sync") in SpinUpDisk() with fdatasync(f) to avoid
problems on NPTL systems (thanks to Chris Warren for pointing this out). problems on NPTL systems (thanks to Chris Warren for pointing this out).
- Increased POLLTIMEOUTS_BEFORE_DEVICECLEAR in transfer.c to 6 to avoid problems
with the larger buffer reserve (thanks to Marco Schlüßler).

View File

@ -4,13 +4,13 @@
* 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: transfer.c 1.27 2005/02/12 15:54:06 kls Exp $ * $Id: transfer.c 1.28 2005/02/19 14:38:55 kls Exp $
*/ */
#include "transfer.h" #include "transfer.h"
#define TRANSFERBUFSIZE MEGABYTE(2) #define TRANSFERBUFSIZE MEGABYTE(2)
#define POLLTIMEOUTS_BEFORE_DEVICECLEAR 3 #define POLLTIMEOUTS_BEFORE_DEVICECLEAR 6
// --- cTransfer ------------------------------------------------------------- // --- cTransfer -------------------------------------------------------------