mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
Close pipe when externremux.sh is gone. Fixes high CPU load problem (#235)
This commit is contained in:
parent
525574f9b0
commit
69b754bef9
@ -119,7 +119,15 @@ void cTSExt::Action(void)
|
||||
if (FD_ISSET(m_Outpipe, &rfds)) {
|
||||
int result;
|
||||
if ((result = m_ResultBuffer->Read(m_Outpipe)) == -1) {
|
||||
LOG_ERROR_STR("read failed");
|
||||
if (errno != EINTR) {
|
||||
LOG_ERROR_STR("read failed");
|
||||
m_Active = false;
|
||||
}
|
||||
break;
|
||||
}
|
||||
else if (result == 0) {
|
||||
esyslog("streamdev-server: EOF reading from externremux");
|
||||
m_Active = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user