mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-09 13:29:59 -05:00
core, modules: Remove useless EINTR tests
Since commit ad447d1468 (in 2009) pa_read and pa_write take care of
handling EINTR error.
So, pa_read, pa_write, pa_iochannel_read and pa_iochannel_write can not
exit with errno set to EINTR, and testing it is useless.
This commit is contained in:
parent
8342c12339
commit
05f3e8bf9a
10 changed files with 31 additions and 82 deletions
|
|
@ -980,10 +980,7 @@ static void thread_func(void *userdata) {
|
|||
|
||||
if (t < 0) {
|
||||
|
||||
if (errno == EINTR)
|
||||
continue;
|
||||
|
||||
else if (errno == EAGAIN) {
|
||||
if (errno == EAGAIN) {
|
||||
pa_log_debug("EAGAIN");
|
||||
|
||||
revents &= ~POLLOUT;
|
||||
|
|
@ -1087,10 +1084,7 @@ static void thread_func(void *userdata) {
|
|||
if (t < 0) {
|
||||
pa_memblock_unref(memchunk.memblock);
|
||||
|
||||
if (errno == EINTR)
|
||||
continue;
|
||||
|
||||
else if (errno == EAGAIN) {
|
||||
if (errno == EAGAIN) {
|
||||
pa_log_debug("EAGAIN");
|
||||
|
||||
revents &= ~POLLIN;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue