Skip to content

Commit

Permalink
Add missing file to 0b5bcf9
Browse files Browse the repository at this point in the history
  • Loading branch information
teamblue-e2 committed Aug 14, 2023
1 parent 0b5bcf9 commit 4f9646b
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions lib/dvb/filepush.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,18 +129,18 @@ void eFilePushThread::thread()
pfd.events = POLLIN;
switch (poll(&pfd, 1, 250)) // wait for 250ms
{
case 0:
eDebug("[eFilePushThread] wait for driver eof timeout");
continue;
case 1:
eDebug("[eFilePushThread] wait for driver eof ok");
case 0:
eDebug("[eFilePushThread] wait for driver eof timeout");
continue;
case 1:
eDebug("[eFilePushThread] wait for driver eof ok");
break;
default:
eDebug("[eFilePushThread] wait for driver eof aborted by signal");
/* Check m_stop after interrupted syscall. */
if (m_stop)
break;
default:
eDebug("[eFilePushThread] wait for driver eof aborted by signal");
/* Check m_stop after interrupted syscall. */
if (m_stop)
break;
continue;
continue;
}
}

Expand Down Expand Up @@ -194,10 +194,10 @@ void eFilePushThread::thread()
usleep(100000);
#endif
continue;
}
eDebug("[eFilePushThread] write: %m");
sendEvent(evtWriteError);
break;
}
}
buf_start += w;
}
Expand Down

0 comments on commit 4f9646b

Please sign in to comment.