From acf619a3c304992a7ec093cd95fdd6c0805cca66 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Thu, 14 Dec 2006 16:35:03 +0000 Subject: [PATCH] not block so long --- lib/base/console.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/base/console.cpp b/lib/base/console.cpp index 75c6162f..3f73fba1 100644 --- a/lib/base/console.cpp +++ b/lib/base/console.cpp @@ -281,6 +281,7 @@ void eConsoleAppContainer::closePipes() void eConsoleAppContainer::readyRead(int what) { + bool hungup = what & eSocketNotifier::Hungup; if (what & (eSocketNotifier::Priority|eSocketNotifier::Read)) { // eDebug("what = %d"); @@ -292,9 +293,11 @@ void eConsoleAppContainer::readyRead(int what) eDebug("%d = %c (%02x)", i, buf[i], buf[i] );*/ buf[rd]=0; /*emit*/ dataAvail(buf); + if (!hungup) + break; } } - if (what & eSocketNotifier::Hungup) + if (hungup) { eDebug("child has terminated"); closePipes(); -- 2.30.2