summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--auto-virtserial.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/auto-virtserial.c b/auto-virtserial.c
index 560a3e4..43daf3d 100644
--- a/auto-virtserial.c
+++ b/auto-virtserial.c
@@ -1357,8 +1357,8 @@ static int test_threaded_read_write(int nr)
pollfd[0].fd = chardevs[nr].sock;
pollfd[0].events = POLLOUT;
- /* Wait for 5s to see if guest writes out something */
- ret = poll(pollfd, 1, 5000);
+ /* Wait for 10s to see if guest writes out something */
+ ret = poll(pollfd, 1, 10000);
if (ret == -1)
error(errno, errno, "%s: poll\n", __func__);
if (!(pollfd[0].revents & POLLOUT))