Add copyright headers. Formatting cleanup.

This commit is contained in:
Jeff Ames
2009-04-27 05:22:44 +00:00
parent 6077bbda30
commit 8dbcfc70bf
8 changed files with 208 additions and 189 deletions

View File

@@ -42,7 +42,7 @@ namespace OpenSim
Host.Console.Info("Microthreaded 2" + param);
yield return null;
int c = 100;
while(c-- < 0)
while (c-- < 0)
{
Host.Console.Info("Microthreaded Looped " + c + " " + param);
yield return null;
@@ -64,7 +64,7 @@ namespace OpenSim
Microthread(TestMicrothread("Ohai"));
int i = 0;
while(threads.Count > 0)
while (threads.Count > 0)
{
i++;
bool running = threads[i%threads.Count].MoveNext();