summaryrefslogtreecommitdiff
path: root/recorder.c
diff options
context:
space:
mode:
Diffstat (limited to 'recorder.c')
-rw-r--r--recorder.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/recorder.c b/recorder.c
index 8c426a5a..7bcd0cc7 100644
--- a/recorder.c
+++ b/recorder.c
@@ -4,13 +4,14 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: recorder.c 1.18 2007/01/07 14:43:09 kls Exp $
+ * $Id: recorder.c 1.19 2007/02/24 16:36:24 kls Exp $
*/
#include "recorder.h"
#include <stdarg.h>
#include <stdio.h>
#include <unistd.h>
+#include "shutdown.h"
#define RECORDERBUFSIZE MEGABYTE(5)
@@ -117,7 +118,7 @@ void cFileWriter::Action(void)
}
else if (time(NULL) - t > MAXBROKENTIMEOUT) {
esyslog("ERROR: video data stream broken");
- cThread::EmergencyExit(true);
+ ShutdownHandler.RequestEmergencyExit();
t = time(NULL);
}
}