diff options
author | Jeff Ames | 2009-04-27 05:22:44 +0000 |
---|---|---|
committer | Jeff Ames | 2009-04-27 05:22:44 +0000 |
commit | 8dbcfc70bf87d503edd4239bd974339a130de153 (patch) | |
tree | 9adfe4db9d5658952cf181b919cbe45db170139b /OpenSim/Region/OptionalModules/Scripting/Minimodule/Test | |
parent | Update svn properties. (diff) | |
download | opensim-SC-8dbcfc70bf87d503edd4239bd974339a130de153.zip opensim-SC-8dbcfc70bf87d503edd4239bd974339a130de153.tar.gz opensim-SC-8dbcfc70bf87d503edd4239bd974339a130de153.tar.bz2 opensim-SC-8dbcfc70bf87d503edd4239bd974339a130de153.tar.xz |
Add copyright headers. Formatting cleanup.
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/Minimodule/Test')
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/Minimodule/Test/TestModule.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Test/TestModule.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Test/TestModule.cs index 73af7f0..13d0140 100644 --- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Test/TestModule.cs +++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Test/TestModule.cs | |||
@@ -42,7 +42,7 @@ namespace OpenSim | |||
42 | Host.Console.Info("Microthreaded 2" + param); | 42 | Host.Console.Info("Microthreaded 2" + param); |
43 | yield return null; | 43 | yield return null; |
44 | int c = 100; | 44 | int c = 100; |
45 | while(c-- < 0) | 45 | while (c-- < 0) |
46 | { | 46 | { |
47 | Host.Console.Info("Microthreaded Looped " + c + " " + param); | 47 | Host.Console.Info("Microthreaded Looped " + c + " " + param); |
48 | yield return null; | 48 | yield return null; |
@@ -64,7 +64,7 @@ namespace OpenSim | |||
64 | Microthread(TestMicrothread("Ohai")); | 64 | Microthread(TestMicrothread("Ohai")); |
65 | 65 | ||
66 | int i = 0; | 66 | int i = 0; |
67 | while(threads.Count > 0) | 67 | while (threads.Count > 0) |
68 | { | 68 | { |
69 | i++; | 69 | i++; |
70 | bool running = threads[i%threads.Count].MoveNext(); | 70 | bool running = threads[i%threads.Count].MoveNext(); |