mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-12 13:30:10 -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
|
|
@ -151,26 +151,16 @@ static void flush(pa_fdsem *f) {
|
|||
uint64_t u;
|
||||
|
||||
if ((r = pa_read(f->efd, &u, sizeof(u), NULL)) != sizeof(u)) {
|
||||
|
||||
if (r >= 0 || errno != EINTR) {
|
||||
pa_log_error("Invalid read from eventfd: %s", r < 0 ? pa_cstrerror(errno) : "EOF");
|
||||
pa_assert_not_reached();
|
||||
}
|
||||
|
||||
continue;
|
||||
pa_log_error("Invalid read from eventfd: %s", r < 0 ? pa_cstrerror(errno) : "EOF");
|
||||
pa_assert_not_reached();
|
||||
}
|
||||
r = (ssize_t) u;
|
||||
} else
|
||||
#endif
|
||||
|
||||
if ((r = pa_read(f->fds[0], &x, sizeof(x), NULL)) <= 0) {
|
||||
|
||||
if (r >= 0 || errno != EINTR) {
|
||||
pa_log_error("Invalid read from pipe: %s", r < 0 ? pa_cstrerror(errno) : "EOF");
|
||||
pa_assert_not_reached();
|
||||
}
|
||||
|
||||
continue;
|
||||
pa_log_error("Invalid read from pipe: %s", r < 0 ? pa_cstrerror(errno) : "EOF");
|
||||
pa_assert_not_reached();
|
||||
}
|
||||
|
||||
} while (pa_atomic_sub(&f->data->in_pipe, (int) r) > (int) r);
|
||||
|
|
@ -194,23 +184,15 @@ void pa_fdsem_post(pa_fdsem *f) {
|
|||
uint64_t u = 1;
|
||||
|
||||
if ((r = pa_write(f->efd, &u, sizeof(u), &f->write_type)) != sizeof(u)) {
|
||||
if (r >= 0 || errno != EINTR) {
|
||||
pa_log_error("Invalid write to eventfd: %s", r < 0 ? pa_cstrerror(errno) : "EOF");
|
||||
pa_assert_not_reached();
|
||||
}
|
||||
|
||||
continue;
|
||||
pa_log_error("Invalid write to eventfd: %s", r < 0 ? pa_cstrerror(errno) : "EOF");
|
||||
pa_assert_not_reached();
|
||||
}
|
||||
} else
|
||||
#endif
|
||||
|
||||
if ((r = pa_write(f->fds[1], &x, 1, &f->write_type)) != 1) {
|
||||
if (r >= 0 || errno != EINTR) {
|
||||
pa_log_error("Invalid write to pipe: %s", r < 0 ? pa_cstrerror(errno) : "EOF");
|
||||
pa_assert_not_reached();
|
||||
}
|
||||
|
||||
continue;
|
||||
pa_log_error("Invalid write to pipe: %s", r < 0 ? pa_cstrerror(errno) : "EOF");
|
||||
pa_assert_not_reached();
|
||||
}
|
||||
|
||||
break;
|
||||
|
|
@ -238,13 +220,8 @@ void pa_fdsem_wait(pa_fdsem *f) {
|
|||
uint64_t u;
|
||||
|
||||
if ((r = pa_read(f->efd, &u, sizeof(u), NULL)) != sizeof(u)) {
|
||||
|
||||
if (r >= 0 || errno != EINTR) {
|
||||
pa_log_error("Invalid read from eventfd: %s", r < 0 ? pa_cstrerror(errno) : "EOF");
|
||||
pa_assert_not_reached();
|
||||
}
|
||||
|
||||
continue;
|
||||
pa_log_error("Invalid read from eventfd: %s", r < 0 ? pa_cstrerror(errno) : "EOF");
|
||||
pa_assert_not_reached();
|
||||
}
|
||||
|
||||
r = (ssize_t) u;
|
||||
|
|
@ -252,13 +229,8 @@ void pa_fdsem_wait(pa_fdsem *f) {
|
|||
#endif
|
||||
|
||||
if ((r = pa_read(f->fds[0], &x, sizeof(x), NULL)) <= 0) {
|
||||
|
||||
if (r >= 0 || errno != EINTR) {
|
||||
pa_log_error("Invalid read from pipe: %s", r < 0 ? pa_cstrerror(errno) : "EOF");
|
||||
pa_assert_not_reached();
|
||||
}
|
||||
|
||||
continue;
|
||||
pa_log_error("Invalid read from pipe: %s", r < 0 ? pa_cstrerror(errno) : "EOF");
|
||||
pa_assert_not_reached();
|
||||
}
|
||||
|
||||
pa_atomic_sub(&f->data->in_pipe, (int) r);
|
||||
|
|
|
|||
|
|
@ -227,7 +227,7 @@ ssize_t pa_iochannel_write(pa_iochannel*io, const void*data, size_t l) {
|
|||
return r; /* Fast path - we almost always successfully write everything */
|
||||
|
||||
if (r < 0) {
|
||||
if (errno == EINTR || errno == EAGAIN)
|
||||
if (errno == EAGAIN)
|
||||
r = 0;
|
||||
else
|
||||
return r;
|
||||
|
|
|
|||
|
|
@ -1010,7 +1010,7 @@ static int do_read(connection *c) {
|
|||
((uint8_t*) &c->request) + c->read_data_length,
|
||||
sizeof(c->request) - c->read_data_length)) <= 0) {
|
||||
|
||||
if (r < 0 && (errno == EINTR || errno == EAGAIN))
|
||||
if (r < 0 && errno == EAGAIN)
|
||||
return 0;
|
||||
|
||||
pa_log_debug("read(): %s", r < 0 ? pa_cstrerror(errno) : "EOF");
|
||||
|
|
@ -1066,7 +1066,7 @@ static int do_read(connection *c) {
|
|||
(uint8_t*) c->read_data + c->read_data_length,
|
||||
handler->data_length - c->read_data_length)) <= 0) {
|
||||
|
||||
if (r < 0 && (errno == EINTR || errno == EAGAIN))
|
||||
if (r < 0 && errno == EAGAIN)
|
||||
return 0;
|
||||
|
||||
pa_log_debug("read(): %s", r < 0 ? pa_cstrerror(errno) : "EOF");
|
||||
|
|
@ -1097,7 +1097,7 @@ static int do_read(connection *c) {
|
|||
pa_memblock_release(c->scache.memchunk.memblock);
|
||||
|
||||
if (r <= 0) {
|
||||
if (r < 0 && (errno == EINTR || errno == EAGAIN))
|
||||
if (r < 0 && errno == EAGAIN)
|
||||
return 0;
|
||||
|
||||
pa_log_debug("read(): %s", r < 0 ? pa_cstrerror(errno) : "EOF");
|
||||
|
|
@ -1165,7 +1165,7 @@ static int do_read(connection *c) {
|
|||
|
||||
if (r <= 0) {
|
||||
|
||||
if (r < 0 && (errno == EINTR || errno == EAGAIN))
|
||||
if (r < 0 && errno == EAGAIN)
|
||||
return 0;
|
||||
|
||||
pa_log_debug("read(): %s", r < 0 ? pa_cstrerror(errno) : "EOF");
|
||||
|
|
|
|||
|
|
@ -183,7 +183,7 @@ static int do_read(connection *c) {
|
|||
|
||||
if (r <= 0) {
|
||||
|
||||
if (r < 0 && (errno == EINTR || errno == EAGAIN))
|
||||
if (r < 0 && errno == EAGAIN)
|
||||
return 0;
|
||||
|
||||
pa_log_debug("read(): %s", r == 0 ? "EOF" : pa_cstrerror(errno));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue