Added comment to while loop

This commit is contained in:
Jim Norman 2006-04-26 17:23:53 +00:00
parent dfb888d3ef
commit ae55708d00

View File

@ -292,15 +292,18 @@ namespace sscs.common
// Read the standard output of the spawned process. // Read the standard output of the spawned process.
string myString = myStreamReader.ReadLine(); string myString = myStreamReader.ReadLine();
int numProcs = 0; int numProcs = 0;
// determine if user has more than 1 process still running
while( myString != null) while( myString != null)
{ {
if(numProcs > 1) if(numProcs > 1)
{
break; break;
numProcs++;
myString = myStreamReader.ReadLine();
} }
numProcs++;
myString = myStreamReader.ReadLine();
}
do do
{ {