From 3710004596640c4e5e86d09a8948b0e8a94b7fd2 Mon Sep 17 00:00:00 2001 From: Richard Cochran Date: Tue, 4 Dec 2012 14:27:25 +0100 Subject: [PATCH] pmc: reduce the message time out waiting for replies. Signed-off-by: Richard Cochran --- pmc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmc.c b/pmc.c index 2e2e18a..4a1a148 100644 --- a/pmc.c +++ b/pmc.c @@ -553,7 +553,7 @@ int main(int argc, char *argv[]) if (pollfd[0].revents & POLLHUP) { if (tmo == -1) { /* Wait a bit longer for outstanding replies. */ - tmo = 1000; + tmo = 100; pollfd[0].fd = -1; pollfd[0].events = 0; } else {