From 54cbc60d3a241cb7f4f4bee67b85b038e18d5d4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A3o=20Gottwald?= Date: Fri, 5 Mar 2010 13:34:44 +0100 Subject: [PATCH] Backed out changeset 4c8952703e77 --- xpcom/tests/TestBlockingProcess.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/xpcom/tests/TestBlockingProcess.cpp b/xpcom/tests/TestBlockingProcess.cpp index d4c233932b5f..8e06145203cd 100644 --- a/xpcom/tests/TestBlockingProcess.cpp +++ b/xpcom/tests/TestBlockingProcess.cpp @@ -1,8 +1,9 @@ -#include +#include int main() { - while(1) sleep(10); + char text[20]; + fgets(text, sizeof text, stdin); return 0; }