Bug 543438 - TestBlockingProcess relies on stdin to "block". r=dtownsend

This commit is contained in:
Mike Hommey 2010-03-05 13:02:22 +01:00
Родитель 506342f16c
Коммит fea6270a75
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -1,9 +1,8 @@
#include <stdio.h>
#include <unistd.h>
int main()
{
char text[20];
fgets(text, sizeof text, stdin);
while(1) sleep(10);
return 0;
}